ce1a3e3242
This release fixes compatibility with cmake 3.7.1. Additionally I found out that armadillo only needs the hdf5-C library and not the C++ layer.
26 lines
705 B
Nix
26 lines
705 B
Nix
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "7.700.0";
|
|
name = "armadillo-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
|
|
sha256 = "152x274hd3f59xgd27k9d3ikwb3w62v1v5hpw4lp1yzdyy8980pr";
|
|
};
|
|
|
|
buildInputs = [ cmake openblasCompat superlu hdf5 ];
|
|
|
|
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 = with maintainers; [ juliendehos knedlsepp ];
|
|
};
|
|
}
|