1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/eigen-stl-containers/default.nix

25 lines
766 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, catkin, cmake-modules, eigen }:
buildRosPackage {
pname = "ros-melodic-eigen-stl-containers";
version = "0.1.8";
src = fetchurl {
url = https://github.com/ros-gbp/eigen_stl_containers-release/archive/release/melodic/eigen_stl_containers/0.1.8-0.tar.gz;
sha256 = "e10632b9c182ffc09170b5fc80bf0a0f3cb8ab1091c01b44953042ba71ad5843";
};
buildInputs = [ cmake-modules eigen ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ eigen ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''This package provides a set of typedef's that allow
using Eigen datatypes in STL containers'';
#license = lib.licenses.BSD;
};
}