2019-03-21 00:14:59 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-03-21 00:14:59 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-09-09 15:37:07 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake, doxygen, eigen, git, python, pythonPackages }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-eigenpy";
|
2020-09-09 15:37:07 -04:00
|
|
|
version = "2.5.0-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-09-09 15:37:07 -04:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2019-12-09 05:16:46 +00:00
|
|
|
buildType = "cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ doxygen git ];
|
2020-09-09 15:37:07 -04:00
|
|
|
propagatedBuildInputs = [ boost catkin eigen python pythonPackages.numpy ];
|
2019-12-09 05:16:46 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
2019-12-09 05:16:46 +00:00
|
|
|
description = ''Bindings between Numpy and Eigen using Boost.Python'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|