2021-03-06 02:47:22 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2021-03-06 02:47:22 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib, actionlib-msgs, catkin, cob-actions, cob-light, cob-mimic, cob-sound, control-msgs, geometry-msgs, message-generation, message-runtime, move-base-msgs, python3Packages, rospy, rostest, std-msgs, std-srvs, tf, trajectory-msgs, urdfdom-py }:
|
2021-03-06 02:47:22 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-cob-script-server";
|
2022-08-12 14:45:56 +00:00
|
|
|
version = "0.6.29-r1";
|
2021-03-06 02:47:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-08-12 14:45:56 +00:00
|
|
|
url = "https://github.com/ipa320/cob_command_tools-release/archive/release/noetic/cob_script_server/0.6.29-1.tar.gz";
|
|
|
|
name = "0.6.29-1.tar.gz";
|
|
|
|
sha256 = "e82ccbefa9f9c95ee781051b66a55c8b3fe3494d441147834458af1d70edbc06";
|
2021-03-06 02:47:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 13:38:03 +00:00
|
|
|
buildInputs = [ message-generation ];
|
2022-01-07 13:12:33 +00:00
|
|
|
propagatedBuildInputs = [ actionlib actionlib-msgs cob-actions cob-light cob-mimic cob-sound control-msgs geometry-msgs message-runtime move-base-msgs python3Packages.ipython python3Packages.pygraphviz python3Packages.six rospy rostest std-msgs std-srvs tf trajectory-msgs urdfdom-py ];
|
2021-03-06 02:47:22 +00:00
|
|
|
nativeBuildInputs = [ catkin python3Packages.setuptools ];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|