1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-03 03:28:20 +03:00
nix-ros-overlay/melodic/eigenpy/default.nix
2019-03-21 00:14:59 -04:00

22 lines
780 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python, boost, git, catkin, pythonPackages, eigen }:
buildRosPackage {
pname = "ros-melodic-eigenpy";
version = "1.5.0-r1";
src = fetchurl {
url = https://github.com/ipab-slmc/eigenpy_catkin-release/archive/release/melodic/eigenpy/1.5.0-1.tar.gz;
sha256 = "407300df55fa840ad29485ae7f9506e49482bad4b9783aef2bf6d90afe163f4b";
};
propagatedBuildInputs = [ python pythonPackages.numpy boost eigen ];
nativeBuildInputs = [ python pythonPackages.numpy boost eigen git catkin ];
meta = {
description = ''Bindings between Numpy and Eigen using Boost.Python - wrapped for catkin.'';
#license = lib.licenses.LGPLv3;
};
}