base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / misc / hdf5 / 1.10.nix
blobdda8fd3a8fa4965221885cad18595163d27b88f6
1 { lib
2 , stdenv
3 , fetchurl
4 , removeReferencesTo
5 , zlibSupport ? true
6 , zlib
7 , enableShared ? !stdenv.hostPlatform.isStatic
8 , javaSupport ? false
9 , jdk
12 let inherit (lib) optional; in
14 stdenv.mkDerivation rec {
15   version = "1.10.11";
16   pname = "hdf5";
17   src = fetchurl {
18     url = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${lib.versions.majorMinor version}/${pname}-${version}/src/${pname}-${version}.tar.bz2";
19     sha256 = "sha256-Cvx32lxGIXcJR1u++8qRwMtvHqYozNjDYZbPbFpN4wQ=";
20   };
22   outputs = [ "out" "dev" ];
24   buildInputs = optional javaSupport jdk;
26   nativeBuildInputs = [ removeReferencesTo ];
28   propagatedBuildInputs = optional zlibSupport zlib;
30   configureFlags = optional enableShared "--enable-shared"
31     ++ optional javaSupport "--enable-java";
33   patches = [ ];
35   postInstall = ''
36     find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
37     moveToOutput 'bin/h5cc' "''${!outputDev}"
38     moveToOutput 'bin/h5c++' "''${!outputDev}"
39     moveToOutput 'bin/h5fc' "''${!outputDev}"
40     moveToOutput 'bin/h5pcc' "''${!outputDev}"
41   '';
43   meta = {
44     description = "Data model, library, and file format for storing and managing data";
45     longDescription = ''
46       HDF5 supports an unlimited variety of datatypes, and is designed for flexible and efficient
47       I/O and for high volume and complex data. HDF5 is portable and is extensible, allowing
48       applications to evolve in their use of HDF5. The HDF5 Technology suite includes tools and
49       applications for managing, manipulating, viewing, and analyzing data in the HDF5 format.
50     '';
51     license = lib.licenses.bsd3; # Lawrence Berkeley National Labs BSD 3-Clause variant
52     homepage = "https://www.hdfgroup.org/HDF5/";
53     platforms = lib.platforms.unix;
54   };