1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 22:50:46 +03:00
nix-ros-overlay/melodic/cob-script-server/default.nix

24 lines
1.3 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib-msgs, actionlib, rospy, cob-actions, tf, geometry-msgs, cob-sound, cob-mimic, pythonPackages, message-generation, message-runtime, std-srvs, control-msgs, trajectory-msgs, catkin, move-base-msgs, cob-light, std-msgs, rostest }:
buildRosPackage {
pname = "ros-melodic-cob-script-server";
version = "0.6.14-r1";
src = fetchurl {
url = https://github.com/ipa320/cob_command_tools-release/archive/release/melodic/cob_script_server/0.6.14-1.tar.gz;
sha256 = "a8df1963c7e249e9a936e8618b537ffa46329bfe1be212a7922492da3eed8c59";
};
buildInputs = [ actionlib-msgs trajectory-msgs rostest message-generation actionlib ];
propagatedBuildInputs = [ std-srvs cob-sound actionlib-msgs cob-mimic control-msgs trajectory-msgs pythonPackages.ipython pythonPackages.pygraphviz move-base-msgs rostest cob-light rospy message-runtime actionlib std-msgs cob-actions tf geometry-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The cob_script_server package provides a simple interface to operate Care-O-bot. It can be used via the python API or the actionlib interface.'';
license = with lib.licenses; [ asl20 ];
};
}