6f72708c12
Even though the linked openBLAS contains LAPACK, the functionality was not usable due to armadillo needing to link against it explicitly.
32 lines
870 B
Nix
32 lines
870 B
Nix
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "7.800.1";
|
|
name = "armadillo-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
|
|
sha256 = "1nxq2jp4jlvinynv0l04rpdzpnkzdsng0d5vi3hilc0hlsjnbnjs";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ openblasCompat superlu hdf5 ];
|
|
|
|
cmakeFlags = let
|
|
libSuff = if stdenv.isDarwin then "dylib" else "so";
|
|
in [
|
|
"-DLAPACK_LIBRARY=${openblasCompat}/lib/libopenblas.${libSuff}"
|
|
"-DDETECT_HDF5=ON"
|
|
];
|
|
|
|
patches = [ ./use-unix-config-on-OS-X.patch ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C++ linear algebra library";
|
|
homepage = http://arma.sourceforge.net;
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ juliendehos knedlsepp ];
|
|
};
|
|
}
|