mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
895 B
Nix
26 lines
895 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-iron-tf2-eigen";
|
|
version = "0.31.8-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/iron/tf2_eigen/0.31.8-1.tar.gz";
|
|
name = "0.31.8-1.tar.gz";
|
|
sha256 = "681dbd6ed8c640020440ed9d59d39c3f7208949dc6c617fd8e030f1afec0d3d9";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|