1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-25 16:15:34 +03:00
nix-ros-overlay/dashing/rqt-srv/default.nix
2019-09-06 12:16:22 -04:00

26 lines
941 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rqt-gui-py, ament-cmake, rclpy, rqt-gui, rqt-msg }:
buildRosPackage {
pname = "ros-dashing-rqt-srv";
version = "1.0.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_srv-release/archive/release/dashing/rqt_srv/1.0.1-1.tar.gz";
name = "1.0.1-1.tar.gz";
sha256 = "6a549209e75682aa52d92904750790661be57ffa2b5fc9796b9919e02e598193";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ rclpy rqt-msg rqt-gui rqt-gui-py ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''A Python GUI plugin for introspecting available ROS message types.
Note that the srvs available through this plugin is the ones that are stored
on your machine, not on the ROS core your rqt instance connects to.'';
license = with lib.licenses; [ bsdOriginal ];
};
}