mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1.5 KiB
Nix
26 lines
1.5 KiB
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib, actionlib-msgs, boost, catkin, cob-frame-tracker, cob-script-server, cob-srvs, cob-twist-controller, geometry-msgs, message-generation, message-runtime, pythonPackages, robot-state-publisher, roscpp, roslint, rospy, rviz, std-msgs, std-srvs, tf, topic-tools, visualization-msgs, xacro }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-cob-cartesian-controller";
|
|
version = "0.8.12-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ipa320/cob_control-release/archive/release/melodic/cob_cartesian_controller/0.8.12-1.tar.gz";
|
|
name = "0.8.12-1.tar.gz";
|
|
sha256 = "1a5c70f3dea95b302d3c3b2e53348c8a38e01f76495dd8aa0d8593a43b366b6a";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ message-generation roslint ];
|
|
propagatedBuildInputs = [ actionlib actionlib-msgs boost cob-frame-tracker cob-script-server cob-srvs cob-twist-controller geometry-msgs message-runtime robot-state-publisher roscpp rospy rviz std-msgs std-srvs tf topic-tools visualization-msgs xacro ];
|
|
nativeBuildInputs = [ catkin pythonPackages.setuptools ];
|
|
|
|
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 ];
|
|
};
|
|
}
|