2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, eigen, eigen3-cmake-module, geometry-msgs, tf2, tf2-ros }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-tf2-eigen";
|
2020-08-24 18:45:07 -04:00
|
|
|
version = "0.13.5-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-24 18:45:07 -04:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/foxy/tf2_eigen/0.13.5-1.tar.gz";
|
|
|
|
name = "0.13.5-1.tar.gz";
|
|
|
|
sha256 = "1737acf0240569a496475b2644d3e809bd669c9cf41698f80cfc9966b9ccfe73";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
|
|
propagatedBuildInputs = [ eigen eigen3-cmake-module geometry-msgs tf2 tf2-ros ];
|
|
|
|
nativeBuildInputs = [ ament-cmake eigen3-cmake-module ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''tf2_eigen'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|