1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-18 16:10:23 +03:00
nix-ros-overlay/distros/melodic/qt-gui-cpp/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cmake-modules, pkg-config, pluginlib, python-qt-binding, pythonPackages, qt-gui, qt5, tinyxml }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-qt-gui-cpp";
version = "0.4.1-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui_cpp/0.4.1-1.tar.gz";
name = "0.4.1-1.tar.gz";
sha256 = "9e18a570d02cfc1aa43a41462c4445f2fdb3593d3d545eaa6018f655ee533bf7";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ cmake-modules pkg-config python-qt-binding qt5.qtbase ];
propagatedBuildInputs = [ pluginlib qt-gui tinyxml ];
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''qt_gui_cpp provides the foundation for C++-bindings for qt_gui and creates bindings for every generator available.
At least one specific binding must be available in order to use C++-plugins.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}