nixpkgs/pkgs/tools/misc/hdf5/default.nix

93 lines
2.6 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, removeReferencesTo
, cppSupport ? false
, fortranSupport ? false
, fortran
, zlibSupport ? true
, zlib
, szipSupport ? false
, szip
, mpiSupport ? false
, mpi
, enableShared ? !stdenv.hostPlatform.isStatic
2021-02-16 22:24:14 +00:00
, javaSupport ? false
, jdk
, usev110Api ? false
}:
# cpp and mpi options are mutually exclusive
# (--enable-unsupported could be used to force the build)
assert !cppSupport || !mpiSupport;
2021-01-15 09:19:50 +00:00
let inherit (lib) optional optionals; in
2014-06-15 10:59:58 +01:00
stdenv.mkDerivation rec {
2021-07-11 10:43:41 +01:00
version = "1.12.1";
pname = "hdf5";
src = fetchurl {
url = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${lib.versions.majorMinor version}/${pname}-${version}/src/${pname}-${version}.tar.bz2";
2021-07-11 10:43:41 +01:00
sha256 = "sha256-qvn1MrPtqD09Otyfi0Cpt2MVIhj6RTScO8d1Asofjxw=";
};
passthru = {
inherit
cppSupport
fortranSupport
fortran
zlibSupport
zlib
szipSupport
szip
mpiSupport
mpi
;
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ removeReferencesTo ]
++ optional fortranSupport fortran;
buildInputs = optional fortranSupport fortran
++ optional szipSupport szip
2021-02-16 22:24:14 +00:00
++ optional javaSupport jdk;
propagatedBuildInputs = optional zlibSupport zlib
++ optional mpiSupport mpi;
configureFlags = optional cppSupport "--enable-cxx"
++ optional fortranSupport "--enable-fortran"
++ optional szipSupport "--with-szlib=${szip}"
++ optionals mpiSupport [ "--enable-parallel" "CC=${mpi}/bin/mpicc" ]
2021-02-16 22:24:14 +00:00
++ optional enableShared "--enable-shared"
++ optional javaSupport "--enable-java"
++ optional usev110Api "--with-default-api-version=v110";
patches = [
./bin-mv.patch
];
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
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
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
homepage = "https://www.hdfgroup.org/HDF5/";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
};
}