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/distros/melodic/eigenpy/default.nix

26 lines
837 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake, doxygen, eigen, git, python, pythonPackages }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-eigenpy";
version = "2.5.0-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ipab-slmc/eigenpy_catkin-release/archive/release/melodic/eigenpy/2.5.0-1.tar.gz";
name = "2.5.0-1.tar.gz";
sha256 = "9e355cdb33aac8e49b4705b9a5259a45f6c95633440639b99f82b7692622c225";
2019-03-21 00:14:59 -04:00
};
buildType = "cmake";
buildInputs = [ doxygen git ];
propagatedBuildInputs = [ boost catkin 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
};
}