mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
782 B
Nix
23 lines
782 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-copyright, ament-cmake, ament-cmake-lint-cmake }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-eigen3-cmake-module";
|
|
version = "0.1.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros2-gbp/eigen3_cmake_module-release/archive/release/dashing/eigen3_cmake_module/0.1.1-1.tar.gz;
|
|
sha256 = "8901cf9f257fc053234ce7529a240291ae868ccdc7d44093d0d912c77085db0e";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|