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/ecl-eigen/default.nix

24 lines
752 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, ecl-license, catkin, cmake-modules, eigen }:
buildRosPackage {
pname = "ros-melodic-ecl-eigen";
version = "0.62.2";
src = fetchurl {
url = https://github.com/yujinrobot-release/ecl_core-release/archive/release/melodic/ecl_eigen/0.62.2-0.tar.gz;
sha256 = "e876bba5caea9487942c43d124404890361df1004126e7233a29d6b5c6e1c0c7";
};
buildInputs = [ ecl-license cmake-modules eigen ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ ecl-license eigen ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''This provides an Eigen implementation for ecl's linear algebra.'';
#license = lib.licenses.BSD;
};
}