2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, cppunit, eigen, eigen3-cmake-module, pkg-config }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-orocos-kdl";
|
2021-02-05 13:08:14 +00:00
|
|
|
version = "3.3.2-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-05 13:08:14 +00:00
|
|
|
url = "https://github.com/ros2-gbp/orocos_kinematics_dynamics-release/archive/release/foxy/orocos_kdl/3.3.2-1.tar.gz";
|
|
|
|
name = "3.3.2-1.tar.gz";
|
|
|
|
sha256 = "98db0b3f2f98694048993f760461db36c01c9ee1cb2cf413ab061dd3882aa5cd";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
checkInputs = [ cppunit ];
|
|
|
|
propagatedBuildInputs = [ eigen eigen3-cmake-module pkg-config ];
|
|
|
|
nativeBuildInputs = [ cmake eigen3-cmake-module ];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|