2019-03-21 00:14:59 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-03-21 00:14:59 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding, pythonPackages, qt5, tango-icon-theme }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-qt-gui";
|
2020-08-24 18:45:07 -04:00
|
|
|
version = "0.4.2-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-24 18:45:07 -04:00
|
|
|
url = "https://github.com/ros-gbp/qt_gui_core-release/archive/release/melodic/qt_gui/0.4.2-1.tar.gz";
|
|
|
|
name = "0.4.2-1.tar.gz";
|
|
|
|
sha256 = "25f883aaa0621d629cabdd188d4f00845aa749127c104dbaf58b3b617f04fa70";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-11-07 19:19:39 -05:00
|
|
|
buildInputs = [ pythonPackages.pyqt5 qt5.qtbase ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ python-qt-binding pythonPackages.rospkg tango-icon-theme ];
|
2020-06-05 12:54:26 +00:00
|
|
|
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''qt_gui provides the infrastructure for an integrated graphical user interface based on Qt.
|
|
|
|
It is extensible with Python- and C++-based plugins (implemented in separate packages) which can contribute arbitrary widgets.
|
|
|
|
It requires either PyQt or PySide bindings.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|