2019-04-08 12:22:55 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-04-08 12:22:55 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05: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, pythonPackages, rospy, rostest, std-msgs, std-srvs, tf, trajectory-msgs, urdfdom-py }:
|
2019-04-08 12:22:55 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-kinetic-cob-script-server";
|
2021-02-05 13:08:14 +00:00
|
|
|
version = "0.6.20-r1";
|
2019-04-08 12:22:55 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-05 13:08:14 +00:00
|
|
|
url = "https://github.com/ipa320/cob_command_tools-release/archive/release/kinetic/cob_script_server/0.6.20-1.tar.gz";
|
|
|
|
name = "0.6.20-1.tar.gz";
|
|
|
|
sha256 = "c6ea28d2b8c964fc9f02fd88785419f2d49c205aa16911a576f478180196dc52";
|
2019-04-08 12:22:55 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:44:09 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ message-generation ];
|
2020-03-27 12:53:57 +00:00
|
|
|
propagatedBuildInputs = [ actionlib actionlib-msgs cob-actions cob-light cob-mimic cob-sound control-msgs geometry-msgs message-runtime move-base-msgs pythonPackages.ipython pythonPackages.pygraphviz pythonPackages.six rospy rostest std-msgs std-srvs tf trajectory-msgs urdfdom-py ];
|
2020-10-23 13:30:31 +00:00
|
|
|
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
|
2019-04-08 12:22:55 -04:00
|
|
|
|
|
|
|
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.'';
|
2019-05-04 02:32:52 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
2019-04-08 12:22:55 -04:00
|
|
|
};
|
|
|
|
}
|