Merge pull request #31781 from robertodr/hdf5-fortran-2003

Update HDF5 and add option to compile Fortran2003 interface
This commit is contained in:
Frederik Rietdijk
2017-11-25 10:37:42 +00:00
committed by GitHub
3 changed files with 87 additions and 8 deletions

View File

@@ -2590,6 +2590,12 @@ with pkgs;
mpi = null;
};
hdf5_1_8 = callPackage ../tools/misc/hdf5/1_8.nix {
gfortran = null;
szip = null;
mpi = null;
};
hdf5-mpi = appendToName "mpi" (hdf5.override {
szip = null;
mpi = pkgs.openmpi;