2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-01-27 13:23:44 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ament-lint-auto, ament-lint-common, orocos-kdl-vendor, rcutils, urdf, urdfdom-headers }:
|
2022-06-09 18:50:37 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-kdl-parser";
|
2023-01-27 13:23:44 +00:00
|
|
|
version = "2.6.4-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-01-27 13:23:44 +00:00
|
|
|
url = "https://github.com/ros2-gbp/kdl_parser-release/archive/release/humble/kdl_parser/2.6.4-1.tar.gz";
|
|
|
|
name = "2.6.4-1.tar.gz";
|
|
|
|
sha256 = "2a94e5791ec8513fa947950ca8b98203280b9b9f5b1a5bade73683d865684006";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake-ros ];
|
2022-06-09 18:50:37 -04:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2023-01-27 13:23:44 +00:00
|
|
|
propagatedBuildInputs = [ orocos-kdl-vendor rcutils urdf urdfdom-headers ];
|
2022-06-09 18:50:37 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The Kinematics and Dynamics Library (KDL) defines a tree structure
|
|
|
|
to represent the kinematic and dynamic parameters of a robot
|
|
|
|
mechanism. <tt>kdl_parser</tt> provides tools to construct a KDL
|
|
|
|
tree from an XML robot representation in URDF.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|