nix-ros-overlay/distros/rolling/tf2-eigen/default.nix

27 lines
901 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# 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-rolling-tf2-eigen";
version = "0.40.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/rolling/tf2_eigen/0.40.1-1.tar.gz";
name = "0.40.1-1.tar.gz";
sha256 = "cd84a4fd741d069b7d0008eac827c75a16f2fa22d7d8fd9576885a36547e3791";
};
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 ];
};
}