mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
818 B
Nix
25 lines
818 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, tf2-ros, tf2, eigen, geometry-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-crystal-tf2-eigen";
|
|
version = "0.10.1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros2-gbp/geometry2-release/archive/release/crystal/tf2_eigen/0.10.1-0.tar.gz;
|
|
sha256 = "cfd1668cfa4bc1daff1156eaa9c84067d7179d5a0b140b749e6872fab29b882c";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ tf2 eigen tf2-ros geometry-msgs ];
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
propagatedBuildInputs = [ tf2 tf2-ros geometry-msgs eigen ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''tf2_eigen'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|