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/humble/tf2-eigen-kdl/default.nix

27 lines
909 B
Nix
Raw Normal View History

# Copyright 2022 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, orocos-kdl-vendor, tf2 }:
buildRosPackage {
pname = "ros-humble-tf2-eigen-kdl";
version = "0.25.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/humble/tf2_eigen_kdl/0.25.0-2.tar.gz";
name = "0.25.0-2.tar.gz";
sha256 = "dc37aec234e22cab4e4f86a4221486d9bd53516d3b49bfd9456c016b9bfa213a";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ eigen orocos-kdl-vendor tf2 ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Conversion functions between:
- Eigen and KDL'';
license = with lib.licenses; [ bsdOriginal ];
};
}