1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/qt-gui/default.nix

28 lines
1.1 KiB
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages, tango-icon-theme, qt5, python-qt-binding }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-qt-gui";
version = "0.3.16-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/0.3.16-1.tar.gz";
name = "0.3.16-1.tar.gz";
sha256 = "294f940b75e3efe8e40c745c1e5bb9f7fbd09d7d50ff7e0b0bfd930e77f18433";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ pythonPackages.pyqt5 qt5.qtbase ];
propagatedBuildInputs = [ pythonPackages.rospkg tango-icon-theme python-qt-binding ];
nativeBuildInputs = [ catkin ];
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.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}