Revert "hdf5: 1.8.16 -> 1.10.0-patch1"

This reverts commit 1c1a03f0d3.

hdf5 1.10 is not yet supported by all tools/libraries (e.g pytables, a dependency of pandas, requires hdf5 1.8).
This commit is contained in:
Frederik Rietdijk 2016-08-28 19:28:31 +02:00
parent 5793a14c36
commit 9d25dc12d9

View file

@ -15,12 +15,12 @@ assert !cpp || mpi == null;
with { inherit (stdenv.lib) optional optionals; };
stdenv.mkDerivation rec {
version = "1.10.0-patch1";
version = "1.8.16";
name = "hdf5-${version}";
src = fetchurl {
url = "http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/${name}/src/${name}.tar.bz2";
sha256 = "1fnzdw0ay5mm9v2vjxfhpjkwrkf9ccfah62lhlcfpp2kv16jcwpp";
};
url = "http://www.hdfgroup.org/ftp/HDF5/releases/${name}/src/${name}.tar.bz2";
sha256 = "1ilq8pn9lxbf2wj2rdzwqabxismznjj1d23iw6g78w0bl5dsxahk";
};
passthru = {
mpiSupport = (mpi != null);