2010-08-02 09:58:53 +01:00
|
|
|
{ stdenv
|
|
|
|
, 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
|
2014-07-01 14:55:12 +01:00
|
|
|
, mpi ? null
|
2014-07-02 14:10:02 +01:00
|
|
|
, enableShared ? true
|
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)
|
|
|
|
assert !cpp || mpi == null;
|
|
|
|
|
2017-02-09 01:52:13 +00:00
|
|
|
let inherit (stdenv.lib) optional optionals; in
|
2015-11-11 14:14:28 +00:00
|
|
|
|
2014-06-15 10:59:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-11-15 16:04:24 +00:00
|
|
|
version = "1.10.4";
|
2014-11-16 08:27:32 +00:00
|
|
|
name = "hdf5-${version}";
|
2010-08-02 09:58:53 +01:00
|
|
|
src = fetchurl {
|
2017-11-17 22:14:31 +00:00
|
|
|
url = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/${name}/src/${name}.tar.bz2";
|
2018-11-15 16:04:24 +00:00
|
|
|
sha256 = "1pr85fa1sh2ky6ai2hs3f21lp252grl2cq3wbyi4rh7dm83gyrqj";
|
2016-08-28 18:28:31 +01:00
|
|
|
};
|
2014-06-15 10:12:03 +01:00
|
|
|
|
2014-07-01 14:55:12 +01:00
|
|
|
passthru = {
|
|
|
|
mpiSupport = (mpi != null);
|
|
|
|
inherit mpi;
|
|
|
|
};
|
|
|
|
|
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
|
2015-11-11 14:14:28 +00:00
|
|
|
++ optional (mpi != null) mpi;
|
|
|
|
|
|
|
|
configureFlags = []
|
|
|
|
++ optional cpp "--enable-cxx"
|
|
|
|
++ optional (gfortran != null) "--enable-fortran"
|
|
|
|
++ optional (szip != null) "--with-szlib=${szip}"
|
2015-11-20 09:59:22 +00:00
|
|
|
++ optionals (mpi != null) ["--enable-parallel" "CC=${mpi}/bin/mpicc"]
|
2015-11-11 14:14:28 +00:00
|
|
|
++ optional enableShared "--enable-shared";
|
|
|
|
|
2010-08-02 09:58:53 +01: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} '{}' +
|
|
|
|
'';
|
|
|
|
|
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.
|
|
|
|
'';
|
2018-11-15 16:04:24 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://www.hdfgroup.org/HDF5/;
|
2017-09-22 17:56:49 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2017-09-30 19:27:32 +01:00
|
|
|
broken = (gfortran != null) && stdenv.isDarwin;
|
2010-08-02 09:58:53 +01:00
|
|
|
};
|
|
|
|
}
|