2020-03-31 07:47:18 -07:00
|
|
|
{ stdenv, fetchurl, cmake, blas, lapack, superlu, hdf5 }:
|
2016-06-11 17:46:08 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "armadillo";
|
2020-10-29 12:56:19 -07:00
|
|
|
version = "10.1.1";
|
2016-07-18 12:55:26 -07:00
|
|
|
|
2016-06-11 17:46:08 -07:00
|
|
|
src = fetchurl {
|
2016-07-18 12:55:26 -07:00
|
|
|
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
|
2020-10-29 12:56:19 -07:00
|
|
|
sha256 = "13hwynp1dnk3flw8ly00wjj12x2wsvj2da39bzay8c08m3dj3q4m";
|
2016-06-11 17:46:08 -07:00
|
|
|
};
|
|
|
|
|
2017-03-11 06:55:45 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2020-03-31 07:47:18 -07:00
|
|
|
buildInputs = [ blas lapack superlu hdf5 ];
|
2016-07-18 12:55:26 -07:00
|
|
|
|
2017-09-12 12:36:41 -07:00
|
|
|
cmakeFlags = [
|
2020-03-31 07:47:18 -07:00
|
|
|
"-DLAPACK_LIBRARY=${lapack}/lib/liblapack${stdenv.hostPlatform.extensions.sharedLibrary}"
|
2017-07-20 13:29:30 -07:00
|
|
|
"-DDETECT_HDF5=ON"
|
|
|
|
];
|
2016-07-18 12:55:26 -07:00
|
|
|
|
2017-07-20 13:29:30 -07:00
|
|
|
patches = [ ./use-unix-config-on-OS-X.patch ];
|
2017-03-19 13:04:43 -07:00
|
|
|
|
2016-06-11 17:46:08 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ linear algebra library";
|
2020-04-05 02:11:25 -07:00
|
|
|
homepage = "http://arma.sourceforge.net";
|
2017-03-19 13:04:43 -07:00
|
|
|
license = licenses.asl20;
|
2016-07-18 12:55:26 -07:00
|
|
|
platforms = platforms.unix;
|
2017-02-09 11:38:05 -08:00
|
|
|
maintainers = with maintainers; [ juliendehos knedlsepp ];
|
2016-06-11 17:46:08 -07:00
|
|
|
};
|
|
|
|
}
|