armadillo: 7.200.2 -> 7.700.0

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.
This commit is contained in:
Josef Kemetmueller 2017-02-09 20:38:05 +01:00
parent e3d9f438c3
commit ce1a3e3242

View file

@ -1,15 +1,15 @@
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5-cpp }:
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
stdenv.mkDerivation rec {
version = "7.200.2";
version = "7.700.0";
name = "armadillo-${version}";
src = fetchurl {
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
sha256 = "1yvx75caks477jqwx5gspi6946jialddk00wdvg6dnh5wdi2xasm";
sha256 = "152x274hd3f59xgd27k9d3ikwb3w62v1v5hpw4lp1yzdyy8980pr";
};
buildInputs = [ cmake openblasCompat superlu hdf5-cpp ];
buildInputs = [ cmake openblasCompat superlu hdf5 ];
cmakeFlags = [ "-DDETECT_HDF5=ON" ];
@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
homepage = http://arma.sourceforge.net;
license = licenses.mpl20;
platforms = platforms.unix;
maintainers = [ maintainers.juliendehos ];
maintainers = with maintainers; [ juliendehos knedlsepp ];
};
}