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/dashing/rqt-service-caller/default.nix
2019-09-06 12:16:22 -04:00

24 lines
830 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rqt-gui-py, rqt-py-common, rqt-gui, ament-cmake }:
buildRosPackage {
pname = "ros-dashing-rqt-service-caller";
version = "1.0.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_service_caller-release/archive/release/dashing/rqt_service_caller/1.0.3-1.tar.gz";
name = "1.0.3-1.tar.gz";
sha256 = "29c79f62f406d3678ffa0def179221bdba2298de32b7100b6989fdfcbab8a52a";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ rqt-gui-py rqt-py-common rqt-gui ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''rqt_service_caller provides a GUI plugin for calling arbitrary services.'';
license = with lib.licenses; [ bsdOriginal ];
};
}