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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "armadillo";
|
2020-02-12 03:15:36 +00:00
|
|
|
version = "9.850.1";
|
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";
|
2020-02-12 03:15:36 +00:00
|
|
|
sha256 = "07y0s87srj2wxbywmnxam9bif0x625n6b8np19832mvsb6wqkhyl";
|
2016-06-12 01:46:08 +01:00
|
|
|
};
|
|
|
|
|
2017-03-11 14:55:45 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ openblasCompat superlu hdf5 ];
|
2016-07-18 20:55:26 +01:00
|
|
|
|
2017-09-12 20:36:41 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DLAPACK_LIBRARY=${openblasCompat}/lib/libopenblas${stdenv.hostPlatform.extensions.sharedLibrary}"
|
2017-07-20 21:29:30 +01:00
|
|
|
"-DDETECT_HDF5=ON"
|
|
|
|
];
|
2016-07-18 20:55:26 +01:00
|
|
|
|
2017-07-20 21:29:30 +01:00
|
|
|
patches = [ ./use-unix-config-on-OS-X.patch ];
|
2017-03-19 20:04:43 +00:00
|
|
|
|
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;
|
2017-03-19 20:04:43 +00:00
|
|
|
license = licenses.asl20;
|
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
|
|
|
};
|
|
|
|
}
|