1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/eigen3-cmake-module/default.nix
2022-06-11 13:21:09 -04:00

24 lines
811 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-lint-cmake }:
buildRosPackage {
pname = "ros-humble-eigen3-cmake-module";
version = "0.1.1-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/eigen3_cmake_module-release/archive/release/humble/eigen3_cmake_module/0.1.1-4.tar.gz";
name = "0.1.1-4.tar.gz";
sha256 = "eca361d06c42cf4b554e17a2583f248dc85d61a29b6c8f92f7022a2337fbb07b";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Exports a custom CMake module to find Eigen3.'';
license = with lib.licenses; [ asl20 ];
};
}