2019-03-21 00:14:59 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-03-21 00:14:59 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-06-05 12:54:26 +00:00
|
|
|
{ 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";
|
2020-06-05 12:54:26 +00:00
|
|
|
version = "0.4.1-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-06-05 12:54:26 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ cmake-modules pkg-config python-qt-binding qt5.qtbase ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ pluginlib qt-gui tinyxml ];
|
2020-06-05 12:54:26 +00:00
|
|
|
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.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|