1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/crystal/kdl-parser/default.nix
2019-09-05 22:48:11 -04:00

28 lines
1.1 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, orocos-kdl, ament-lint-common, tinyxml, urdfdom-headers, urdf, tinyxml-vendor, ament-cmake-ros, ament-lint-auto }:
buildRosPackage {
pname = "ros-crystal-kdl-parser";
version = "2.2.0";
src = fetchurl {
url = https://github.com/ros2-gbp/kdl_parser-release/archive/release/crystal/kdl_parser/2.2.0-0.tar.gz;
sha256 = "9f3e1d9af948522e30fceb48dc27cd55cf2726965b00b6d3f745f205e49c92bf";
};
buildType = "ament_cmake";
buildInputs = [ orocos-kdl tinyxml urdfdom-headers urdf tinyxml-vendor ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ orocos-kdl tinyxml urdfdom-headers urdf tinyxml-vendor ];
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 ];
};
}