mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
29 lines
1.2 KiB
Nix
29 lines
1.2 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, rosbag, catkin, roslib, qt-gui, rostopic, actionlib, rospy, std-msgs, genmsg, genpy, python-qt-binding }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-rqt-py-common";
|
|
version = "0.5.0";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/rqt-release/archive/release/kinetic/rqt_py_common/0.5.0-0.tar.gz;
|
|
sha256 = "c9c4185b52c7945d2edb69634f4b1b41190130762b97fe8791cef56db84b52ba";
|
|
};
|
|
|
|
buildInputs = [ std-msgs genmsg ];
|
|
propagatedBuildInputs = [ roslib qt-gui rostopic actionlib rospy rosbag genpy python-qt-binding ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''rqt_py_common provides common functionality for rqt plugins written in Python.
|
|
Despite no plugin is provided, this package is part of the rqt_common_plugins
|
|
repository to keep refactoring generic functionality from these common plugins
|
|
into this package as easy as possible.
|
|
|
|
Functionality included in this package should cover generic ROS concepts and
|
|
should not introduce any special dependencies beside "ros_base".'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|