2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, eigen, geometry-msgs, tf2, tf2-ros }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-tf2-eigen";
|
2023-09-15 13:13:19 +00:00
|
|
|
version = "0.31.5-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-09-15 13:13:19 +00:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/iron/tf2_eigen/0.31.5-1.tar.gz";
|
|
|
|
name = "0.31.5-1.tar.gz";
|
|
|
|
sha256 = "36aed4a2bdfeb4efcbe3a810e2b2891c158762599a9b2a5971b84955d34a8e31";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ eigen geometry-msgs tf2 tf2-ros ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''tf2_eigen'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|