2019-08-30 00:06:28 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 05:16:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, xacro, geometry-msgs, tf, actionlib-msgs, cob-srvs, robot-state-publisher, cob-twist-controller, std-msgs, std-srvs, catkin, roscpp, topic-tools, cob-frame-tracker, rospy, message-generation, boost, actionlib, roslint, rviz, visualization-msgs, message-runtime }:
|
2019-08-30 00:06:28 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-cob-cartesian-controller";
|
2019-12-09 05:16:46 +00:00
|
|
|
version = "0.8.1-r1";
|
2019-08-30 00:06:28 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-09 05:16:46 +00:00
|
|
|
url = "https://github.com/ipa320/cob_control-release/archive/release/melodic/cob_cartesian_controller/0.8.1-1.tar.gz";
|
|
|
|
name = "0.8.1-1.tar.gz";
|
|
|
|
sha256 = "676934ceb346e29f9fd3c43c8e12460d7479a56ecdf3608fefd198b201e08e44";
|
2019-08-30 00:06:28 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 05:16:46 +00:00
|
|
|
buildInputs = [ boost geometry-msgs std-msgs std-srvs actionlib tf roslint actionlib-msgs visualization-msgs roscpp message-generation cob-srvs ];
|
|
|
|
propagatedBuildInputs = [ boost xacro geometry-msgs message-runtime robot-state-publisher std-msgs std-srvs tf actionlib cob-twist-controller rviz rospy actionlib-msgs roscpp visualization-msgs topic-tools cob-frame-tracker cob-srvs ];
|
2019-08-30 00:06:28 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package provides nodes that broadcast tf-frames along various (model-based) Cartesian paths (e.g. Linear, Circular).
|
|
|
|
The tf-frames are interpolated using a given velocity profile (e.g. Ramp, Sinoid) and can be used as targets for the cob_frame_tracker/cob_twist_controller.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|