2021-06-25 12:45:04 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2021-06-25 12:45:04 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cartesian-control-msgs, catkin, joint-trajectory-controller, roscpp, rospy, rosunit, tf2-eigen }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-cartesian-trajectory-interpolation";
|
2024-08-02 13:27:09 +00:00
|
|
|
version = "0.1.7-r1";
|
2021-06-25 12:45:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-02 13:27:09 +00:00
|
|
|
url = "https://github.com/UniversalRobots/Universal_Robots_ROS_controllers_cartesian-release/archive/release/noetic/cartesian_trajectory_interpolation/0.1.7-1.tar.gz";
|
|
|
|
name = "0.1.7-1.tar.gz";
|
|
|
|
sha256 = "4dc6ef691cca2113e439e52d97d6e82ff8c12d7ae207d68b74211a522b2f28a8";
|
2021-06-25 12:45:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2021-06-25 12:45:04 +00:00
|
|
|
checkInputs = [ rosunit ];
|
|
|
|
propagatedBuildInputs = [ cartesian-control-msgs joint-trajectory-controller roscpp rospy tf2-eigen ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Cartesian trajectory interpolation as a standalone library";
|
2021-06-25 12:45:04 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|