2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, orocos-kdl-vendor, rcutils, urdf, urdfdom-headers }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-kdl-parser";
|
2024-08-30 13:28:23 +00:00
|
|
|
version = "2.12.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-30 13:28:23 +00:00
|
|
|
url = "https://github.com/ros2-gbp/kdl_parser-release/archive/release/rolling/kdl_parser/2.12.1-1.tar.gz";
|
|
|
|
name = "2.12.1-1.tar.gz";
|
|
|
|
sha256 = "8a440a9147fac3ce5e0075ec4c6beee9e3474a11648a6fbc5768e281e9a4ecc9";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ orocos-kdl-vendor rcutils urdf urdfdom-headers ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The Kinematics and Dynamics Library (KDL) defines a tree structure
|
2022-12-09 19:20:15 -05:00
|
|
|
to represent the kinematic and dynamic parameters of a robot
|
|
|
|
mechanism. <tt>kdl_parser</tt> provides tools to construct a KDL
|
2024-03-23 14:09:26 +00:00
|
|
|
tree from an XML robot representation in URDF.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|