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/rqt-gui-py/default.nix

26 lines
798 B
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, rqt-gui, rospy, qt-gui, catkin }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-rqt-gui-py";
version = "0.5.0";
src = fetchurl {
url = "https://github.com/ros-gbp/rqt-release/archive/release/melodic/rqt_gui_py/0.5.0-0.tar.gz";
name = "0.5.0-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "0ff83fecf2965173c22e185ba5388c38645c281a5aa89dbe3baac46c431eece6";
};
buildType = "catkin";
buildInputs = [ rqt-gui rospy qt-gui ];
propagatedBuildInputs = [ rqt-gui rospy qt-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
};
}