1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/tf2-eigen/default.nix

26 lines
903 B
Nix

# Copyright 2024 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.35.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/rolling/tf2_eigen/0.35.0-1.tar.gz";
name = "0.35.0-1.tar.gz";
sha256 = "baf622079a07aad91b8c951a1e8acafa04a9afe7b21883abef2f33adcf20aec6";
};
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 ];
};
}