2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, cppunit, eigen, pkg-config }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-orocos-kdl";
|
2019-12-09 05:16:46 +00:00
|
|
|
version = "3.2.1-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-09 05:16:46 +00:00
|
|
|
url = "https://github.com/ros2-gbp/orocos_kinematics_dynamics-release/archive/release/dashing/orocos_kdl/3.2.1-1.tar.gz";
|
|
|
|
name = "3.2.1-1.tar.gz";
|
|
|
|
sha256 = "d734e2a96069add0c6c5d1d865020de78821d63979ee3b815fdab5c2a004b091";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
checkInputs = [ cppunit ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ eigen pkg-config ];
|
2019-09-04 17:11:04 -04:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package contains a recent version of the Kinematics and Dynamics
|
|
|
|
Library (KDL), distributed by the Orocos Project.'';
|
|
|
|
license = with lib.licenses; [ lgpl2 ];
|
|
|
|
};
|
|
|
|
}
|