2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# 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 ];
|
|
|
|
};
|
|
|
|
}
|