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