mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
22 lines
800 B
Nix
22 lines
800 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, rqt-gui-py, rqt-gui, catkin, pythonPackages, rosservice, rqt-py-common }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-rqt-service-caller";
|
|
version = "0.4.8";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/rqt_service_caller-release/archive/release/melodic/rqt_service_caller/0.4.8-0.tar.gz;
|
|
sha256 = "574aa580c11737fc800b058f7cac63a7a7b75d144525d04e89c538716418c1b3";
|
|
};
|
|
|
|
propagatedBuildInputs = [ rqt-gui-py pythonPackages.rospkg rqt-py-common rqt-gui rosservice ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''rqt_service_caller provides a GUI plugin for calling arbitrary services.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|