1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/melodic/eigenpy/default.nix

26 lines
822 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, cmake, doxygen, eigen, git, python, pythonPackages }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-eigenpy";
version = "1.6.9-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ipab-slmc/eigenpy_catkin-release/archive/release/melodic/eigenpy/1.6.9-1.tar.gz";
name = "1.6.9-1.tar.gz";
sha256 = "19c90893ececf5e4b3c5df332d25ece65702a3ef53df0636ee7687db031ba044";
2019-03-21 00:14:59 -04:00
};
buildType = "cmake";
buildInputs = [ doxygen git ];
propagatedBuildInputs = [ boost eigen python pythonPackages.numpy ];
nativeBuildInputs = [ cmake ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Bindings between Numpy and Eigen using Boost.Python'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}