504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
29 lines
812 B
Nix
29 lines
812 B
Nix
{ lib, stdenv, fetchurl, cmake, blas, lapack, superlu, hdf5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "armadillo";
|
|
version = "12.6.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
|
|
hash = "sha256-3zIGS99cRxU88YCzwgEsihlKB+6JJlSmkUtIb/8s+mk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ blas lapack superlu hdf5 ];
|
|
|
|
cmakeFlags = [
|
|
"-DLAPACK_LIBRARY=${lapack}/lib/liblapack${stdenv.hostPlatform.extensions.sharedLibrary}"
|
|
"-DDETECT_HDF5=ON"
|
|
];
|
|
|
|
patches = [ ./use-unix-config-on-OS-X.patch ];
|
|
|
|
meta = with lib; {
|
|
description = "C++ linear algebra library";
|
|
homepage = "https://arma.sourceforge.net";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ juliendehos knedlsepp ];
|
|
};
|
|
}
|