mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
27 lines
1.1 KiB
Nix
27 lines
1.1 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake-modules, rosconsole, orocos-kdl, catkin, tinyxml, rostest, urdfdom-headers, urdf, roscpp }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-kdl-parser";
|
|
version = "1.12.11";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/kdl_parser-release/archive/release/kinetic/kdl_parser/1.12.11-0.tar.gz;
|
|
sha256 = "198efeb1ded4f470492830c7ebd382798589a9cce96a86ce0bfc6c7b32617c8e";
|
|
};
|
|
|
|
buildInputs = [ urdfdom-headers urdf orocos-kdl cmake-modules rosconsole tinyxml ];
|
|
checkInputs = [ rostest roscpp ];
|
|
propagatedBuildInputs = [ urdfdom-headers urdf orocos-kdl rosconsole tinyxml ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
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 = lib.licenses.BSD;
|
|
};
|
|
}
|