1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/rqt-gui-py/default.nix

25 lines
759 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, qt-gui, rospy, rqt-gui }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-rqt-gui-py";
version = "0.5.2-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/rqt-release/archive/release/melodic/rqt_gui_py/0.5.2-1.tar.gz";
name = "0.5.2-1.tar.gz";
sha256 = "19e890bbce211050398d6eacf2298a2bbb92fd47b7ed3e91278b45b8044ca596";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ qt-gui rospy rqt-gui ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''rqt_gui_py enables GUI plugins to use the Python client library for ROS.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}