24ab0460a9
The upgrade of cmake to v3.6.0 broke this build. HDF5 now can only be found if hdf5-cpp is used as buildInput. However the upgrade made it possible to remove a patch: CMake can now find openblas on its own.
26 lines
697 B
Nix
26 lines
697 B
Nix
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5-cpp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "7.200.2";
|
|
name = "armadillo-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
|
|
sha256 = "1yvx75caks477jqwx5gspi6946jialddk00wdvg6dnh5wdi2xasm";
|
|
};
|
|
|
|
buildInputs = [ cmake openblasCompat superlu hdf5-cpp ];
|
|
|
|
cmakeFlags = [ "-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.mpl20;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.juliendehos ];
|
|
};
|
|
}
|