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/kinetic/qt-gui-core/default.nix

23 lines
782 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, qt-gui-app, catkin, qt-gui-cpp, qt-gui, qt-dotgraph, qt-gui-py-common }:
buildRosPackage {
pname = "ros-kinetic-qt-gui-core";
version = "0.3.11";
src = fetchurl {
url = https://github.com/ros-gbp/qt_gui_core-release/archive/release/kinetic/qt_gui_core/0.3.11-0.tar.gz;
sha256 = "454f89e0b49282fa15037b4b074dbe573178add390e71c014905c64f36eb0e55";
};
propagatedBuildInputs = [ qt-gui-cpp qt-gui-app qt-gui qt-dotgraph qt-gui-py-common ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Integration of the ROS package system and ROS-specific plugins for a Qt-based GUI.'';
#license = lib.licenses.BSD;
};
}