1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/melodic/ecl-eigen/default.nix
2019-04-06 22:15:06 -04:00

23 lines
752 B
Nix

# 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 ];
propagatedBuildInputs = [ ecl-license eigen ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This provides an Eigen implementation for ecl's linear algebra.'';
#license = lib.licenses.BSD;
};
}