mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-28 09:25:33 +03:00
22 lines
705 B
Nix
22 lines
705 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rqt-gui, qt-gui, rospy }:
|
|
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;
|
|
sha256 = "0ff83fecf2965173c22e185ba5388c38645c281a5aa89dbe3baac46c431eece6";
|
|
};
|
|
|
|
propagatedBuildInputs = [ rqt-gui qt-gui rospy ];
|
|
nativeBuildInputs = [ catkin rqt-gui qt-gui rospy ];
|
|
|
|
meta = {
|
|
description = ''rqt_gui_py enables GUI plugins to use the Python client library for ROS.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|