2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-09-09 14:55:58 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, builtin-interfaces, tf2-msgs, ament-cmake, orocos-kdl, ament-cmake-gtest, tf2-ros, tf2, rclcpp, geometry-msgs }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tf2-kdl";
|
2019-09-09 14:55:58 -04:00
|
|
|
version = "0.11.5-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-09 14:55:58 -04:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/dashing/tf2_kdl/0.11.5-1.tar.gz";
|
|
|
|
name = "0.11.5-1.tar.gz";
|
|
|
|
sha256 = "ceed23b5a676c34754796015e56f46948d75b0424c2fe574c0db34fb70c5c141";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-09-09 14:55:58 -04:00
|
|
|
buildInputs = [ builtin-interfaces orocos-kdl tf2-ros tf2 geometry-msgs ];
|
2019-09-04 17:11:04 -04:00
|
|
|
checkInputs = [ ament-cmake-gtest tf2-msgs rclcpp ];
|
2019-09-09 14:55:58 -04:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces orocos-kdl tf2-ros tf2 geometry-msgs ];
|
2019-09-04 17:11:04 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''KDL binding for tf2'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|