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