1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/kinetic/rqt-gui-py/default.nix
2019-04-06 20:59:50 -04:00

23 lines
726 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rqt-gui, catkin, qt-gui, rospy }:
buildRosPackage {
pname = "ros-kinetic-rqt-gui-py";
version = "0.5.0";
src = fetchurl {
url = https://github.com/ros-gbp/rqt-release/archive/release/kinetic/rqt_gui_py/0.5.0-0.tar.gz;
sha256 = "5562a8e2a995ecde75a3fc7ae8cb824b905d25d8de32f11172723087fd7847f7";
};
buildInputs = [ rqt-gui qt-gui rospy ];
propagatedBuildInputs = [ rqt-gui qt-gui rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''rqt_gui_py enables GUI plugins to use the Python client library for ROS.'';
#license = lib.licenses.BSD;
};
}