mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
838 B
Nix
25 lines
838 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, cmake, doxygen, eigen, git, python3, python3Packages }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-eigenpy";
|
|
version = "3.8.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/eigenpy-release/archive/release/iron/eigenpy/3.8.2-1.tar.gz";
|
|
name = "3.8.2-1.tar.gz";
|
|
sha256 = "6bde9a70e84964db45c6ff0996d0557c166df9b49e1895feee79c6032351f5eb";
|
|
};
|
|
|
|
buildType = "cmake";
|
|
buildInputs = [ cmake doxygen git ];
|
|
propagatedBuildInputs = [ boost eigen python3 python3Packages.numpy python3Packages.scipy ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = "Bindings between Numpy and Eigen using Boost.Python";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|