mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
776 B
Nix
26 lines
776 B
Nix
![]() |
|
||
|
# Copyright 2024 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, eigen }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-jazzy-ecl-eigen";
|
||
|
version = "1.2.1-r5";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ecl_core-release/archive/release/jazzy/ecl_eigen/1.2.1-5.tar.gz";
|
||
|
name = "1.2.1-5.tar.gz";
|
||
|
sha256 = "f25a476e1d39a819270121672f89b4b1d3c53ac9cdb1ac3b31fd0470e238447f";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake-ros ];
|
||
|
propagatedBuildInputs = [ eigen ];
|
||
|
nativeBuildInputs = [ ament-cmake-ros ];
|
||
|
|
||
|
meta = {
|
||
|
description = "This provides an Eigen implementation for ecl's linear algebra.";
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|