2016-08-16 08:29:15 +02:00
|
|
|
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5-cpp }:
|
2016-06-12 02:46:08 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-07-18 21:55:26 +02:00
|
|
|
version = "7.200.2";
|
2016-06-12 02:46:08 +02:00
|
|
|
name = "armadillo-${version}";
|
2016-07-18 21:55:26 +02:00
|
|
|
|
2016-06-12 02:46:08 +02:00
|
|
|
src = fetchurl {
|
2016-07-18 21:55:26 +02:00
|
|
|
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
|
|
|
|
sha256 = "1yvx75caks477jqwx5gspi6946jialddk00wdvg6dnh5wdi2xasm";
|
2016-06-12 02:46:08 +02:00
|
|
|
};
|
|
|
|
|
2016-08-16 08:29:15 +02:00
|
|
|
buildInputs = [ cmake openblasCompat superlu hdf5-cpp ];
|
2016-07-18 21:55:26 +02:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DDETECT_HDF5=ON" ];
|
|
|
|
|
2016-08-16 08:29:15 +02:00
|
|
|
patches = [ ./use-unix-config-on-OS-X.patch ];
|
2016-06-12 02:46:08 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ linear algebra library";
|
2016-07-18 21:55:26 +02:00
|
|
|
homepage = http://arma.sourceforge.net;
|
2016-06-12 02:46:08 +02:00
|
|
|
license = licenses.mpl20;
|
2016-07-18 21:55:26 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.juliendehos ];
|
2016-06-12 02:46:08 +02:00
|
|
|
};
|
|
|
|
}
|