2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv
|
2010-08-02 09:58:53 +01:00
|
|
|
, fetchurl
|
2017-09-28 08:09:16 +01:00
|
|
|
, removeReferencesTo
|
2015-10-19 13:57:24 +01:00
|
|
|
, cpp ? false
|
|
|
|
, gfortran ? null
|
2014-06-15 10:12:03 +01:00
|
|
|
, zlib ? null
|
2014-06-15 12:26:44 +01:00
|
|
|
, szip ? null
|
2021-01-10 12:40:19 +00:00
|
|
|
, mpiSupport ? false
|
|
|
|
, mpi
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
2010-08-02 09:58:53 +01:00
|
|
|
}:
|
2015-11-11 14:14:28 +00:00
|
|
|
|
2015-11-20 09:59:22 +00:00
|
|
|
# cpp and mpi options are mutually exclusive
|
|
|
|
# (--enable-unsupported could be used to force the build)
|
2021-01-10 12:40:19 +00:00
|
|
|
assert !cpp || !mpiSupport;
|
2015-11-20 09:59:22 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
let inherit (lib) optional optionals; in
|
2015-11-11 14:14:28 +00:00
|
|
|
|
2014-06-15 10:59:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-02-16 21:52:46 +00:00
|
|
|
version = "1.10.7";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "hdf5";
|
2010-08-02 09:58:53 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/${pname}-${version}/src/${pname}-${version}.tar.bz2";
|
2021-02-16 21:52:46 +00:00
|
|
|
sha256 = "0pm5xxry55i0h7wmvc7svzdaa90rnk7h78rrjmnlkz2ygsn8y082";
|
2019-02-21 13:04:05 +00:00
|
|
|
};
|
2014-06-15 10:12:03 +01:00
|
|
|
|
2014-07-01 14:55:12 +01:00
|
|
|
passthru = {
|
2021-01-10 12:40:19 +00:00
|
|
|
inherit mpiSupport;
|
2014-07-01 14:55:12 +01:00
|
|
|
inherit mpi;
|
|
|
|
};
|
|
|
|
|
2019-09-25 16:13:12 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-09-28 08:09:16 +01:00
|
|
|
nativeBuildInputs = [ removeReferencesTo ];
|
|
|
|
|
2014-06-15 10:12:03 +01:00
|
|
|
buildInputs = []
|
2015-11-11 14:14:28 +00:00
|
|
|
++ optional (gfortran != null) gfortran
|
|
|
|
++ optional (szip != null) szip;
|
2014-06-15 12:26:44 +01:00
|
|
|
|
2014-07-01 14:55:12 +01:00
|
|
|
propagatedBuildInputs = []
|
2016-07-19 11:07:23 +01:00
|
|
|
++ optional (zlib != null) zlib
|
2021-01-10 12:40:19 +00:00
|
|
|
++ optional mpiSupport mpi;
|
2015-11-11 14:14:28 +00:00
|
|
|
|
|
|
|
configureFlags = []
|
|
|
|
++ optional cpp "--enable-cxx"
|
|
|
|
++ optional (gfortran != null) "--enable-fortran"
|
|
|
|
++ optional (szip != null) "--with-szlib=${szip}"
|
2021-01-10 12:40:19 +00:00
|
|
|
++ optionals mpiSupport ["--enable-parallel" "CC=${mpi}/bin/mpicc"]
|
2015-11-11 14:14:28 +00:00
|
|
|
++ optional enableShared "--enable-shared";
|
|
|
|
|
2019-02-21 13:04:05 +00:00
|
|
|
patches = [
|
|
|
|
./bin-mv.patch
|
|
|
|
];
|
2015-11-11 14:14:28 +00:00
|
|
|
|
2017-09-28 08:09:16 +01:00
|
|
|
postInstall = ''
|
|
|
|
find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
|
2019-09-27 11:53:14 +01:00
|
|
|
moveToOutput 'bin/h5cc' "''${!outputDev}"
|
|
|
|
moveToOutput 'bin/h5c++' "''${!outputDev}"
|
|
|
|
moveToOutput 'bin/h5fc' "''${!outputDev}"
|
|
|
|
moveToOutput 'bin/h5pcc' "''${!outputDev}"
|
2017-09-28 08:09:16 +01:00
|
|
|
'';
|
|
|
|
|
2010-08-02 09:58:53 +01:00
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Data model, library, and file format for storing and managing data";
|
2010-08-02 09:58:53 +01:00
|
|
|
longDescription = ''
|
2013-10-06 10:49:53 +01:00
|
|
|
HDF5 supports an unlimited variety of datatypes, and is designed for flexible and efficient
|
2017-11-17 22:14:31 +00:00
|
|
|
I/O and for high volume and complex data. HDF5 is portable and is extensible, allowing
|
|
|
|
applications to evolve in their use of HDF5. The HDF5 Technology suite includes tools and
|
2010-08-02 09:58:53 +01:00
|
|
|
applications for managing, manipulating, viewing, and analyzing data in the HDF5 format.
|
|
|
|
'';
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.hdfgroup.org/HDF5/";
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2010-08-02 09:58:53 +01:00
|
|
|
};
|
|
|
|
}
|