2021-09-26 15:33:31 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2021-04-06 19:19:28 +02:00
|
|
|
, fetchurl
|
|
|
|
, removeReferencesTo
|
2021-09-26 15:33:31 +02:00
|
|
|
, zlibSupport ? true
|
|
|
|
, zlib
|
2021-04-06 19:19:28 +02:00
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
2021-05-07 19:03:53 +02:00
|
|
|
, javaSupport ? false
|
|
|
|
, jdk
|
2021-04-06 19:19:28 +02:00
|
|
|
}:
|
|
|
|
|
2023-07-12 17:22:45 +02:00
|
|
|
let inherit (lib) optional; in
|
2021-04-06 19:19:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2023-11-21 08:19:58 +01:00
|
|
|
version = "1.10.11";
|
2021-04-06 19:19:28 +02:00
|
|
|
pname = "hdf5";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${lib.versions.majorMinor version}/${pname}-${version}/src/${pname}-${version}.tar.bz2";
|
2023-11-21 08:19:58 +01:00
|
|
|
sha256 = "sha256-Cvx32lxGIXcJR1u++8qRwMtvHqYozNjDYZbPbFpN4wQ=";
|
2021-04-06 19:19:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-05-07 19:03:53 +02:00
|
|
|
buildInputs = optional javaSupport jdk;
|
|
|
|
|
2021-04-06 19:19:28 +02:00
|
|
|
nativeBuildInputs = [ removeReferencesTo ];
|
|
|
|
|
2021-09-26 15:33:31 +02:00
|
|
|
propagatedBuildInputs = optional zlibSupport zlib;
|
2021-04-06 19:19:28 +02:00
|
|
|
|
2021-09-26 15:33:31 +02:00
|
|
|
configureFlags = optional enableShared "--enable-shared"
|
2021-05-07 19:03:53 +02:00
|
|
|
++ optional javaSupport "--enable-java";
|
2021-04-06 19:19:28 +02:00
|
|
|
|
2022-07-04 08:53:28 +02:00
|
|
|
patches = [ ];
|
2021-04-06 19:19:28 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
|
|
|
|
moveToOutput 'bin/h5cc' "''${!outputDev}"
|
|
|
|
moveToOutput 'bin/h5c++' "''${!outputDev}"
|
|
|
|
moveToOutput 'bin/h5fc' "''${!outputDev}"
|
|
|
|
moveToOutput 'bin/h5pcc' "''${!outputDev}"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Data model, library, and file format for storing and managing data";
|
|
|
|
longDescription = ''
|
|
|
|
HDF5 supports an unlimited variety of datatypes, and is designed for flexible and efficient
|
|
|
|
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
|
|
|
|
applications for managing, manipulating, viewing, and analyzing data in the HDF5 format.
|
|
|
|
'';
|
|
|
|
license = lib.licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant
|
|
|
|
homepage = "https://www.hdfgroup.org/HDF5/";
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|