summary refs log tree commit diff
path: root/pkgs/tools/misc/hdf5
diff options
context:
space:
mode:
authorRoberto Di Remigio <roberto.diremigio@gmail.com>2017-11-18 21:38:27 +0100
committerRoberto Di Remigio <roberto.diremigio@gmail.com>2017-11-21 22:08:06 +0100
commite4ac6f6ab2d07a376eabaa0d8903dc427a37b7b8 (patch)
treeb19e514e4dda19ac5104a961339dd681e2963100 /pkgs/tools/misc/hdf5
parentc024f0b762cb68e044f26b2bd1f5162cceadb2b7 (diff)
downloadnixpkgs-e4ac6f6ab2d07a376eabaa0d8903dc427a37b7b8.tar
nixpkgs-e4ac6f6ab2d07a376eabaa0d8903dc427a37b7b8.tar.gz
nixpkgs-e4ac6f6ab2d07a376eabaa0d8903dc427a37b7b8.tar.bz2
nixpkgs-e4ac6f6ab2d07a376eabaa0d8903dc427a37b7b8.tar.lz
nixpkgs-e4ac6f6ab2d07a376eabaa0d8903dc427a37b7b8.tar.xz
nixpkgs-e4ac6f6ab2d07a376eabaa0d8903dc427a37b7b8.tar.zst
nixpkgs-e4ac6f6ab2d07a376eabaa0d8903dc427a37b7b8.zip
hdf5_1_8: init at 1.8.18
Diffstat (limited to 'pkgs/tools/misc/hdf5')
-rw-r--r--pkgs/tools/misc/hdf5/1_8.nix71
1 files changed, 71 insertions, 0 deletions
diff --git a/pkgs/tools/misc/hdf5/1_8.nix b/pkgs/tools/misc/hdf5/1_8.nix
new file mode 100644
index 00000000000..20f207f59cf
--- /dev/null
+++ b/pkgs/tools/misc/hdf5/1_8.nix
@@ -0,0 +1,71 @@
+{ stdenv
+, fetchurl
+, gcc
+, removeReferencesTo
+, cpp ? false
+, gfortran ? null
+, zlib ? null
+, szip ? null
+, mpi ? null
+, enableShared ? true
+}:
+
+# cpp and mpi options are mutually exclusive
+# (--enable-unsupported could be used to force the build)
+assert !cpp || mpi == null;
+
+# No point splitting version 1.8.18 into multiple outputs.
+# The library /lib/libhdf5.so has a reference to gcc-wrapper
+
+let inherit (stdenv.lib) optional optionals; in
+
+stdenv.mkDerivation rec {
+  version = "1.8.18";
+  name = "hdf5-${version}";
+  src = fetchurl {
+    url = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.8/${name}/src/${name}.tar.bz2";
+    sha256 = "13542vrnl1p35n8vbq0wzk40vddmm33q5nh04j98c7r1yjnxxih1";
+ };
+
+  passthru = {
+    mpiSupport = (mpi != null);
+    inherit mpi;
+  };
+
+  nativeBuildInputs = [ removeReferencesTo ];
+
+  buildInputs = []
+    ++ optional (gfortran != null) gfortran
+    ++ optional (szip != null) szip;
+
+  propagatedBuildInputs = []
+    ++ optional (zlib != null) zlib
+    ++ optional (mpi != null) mpi;
+
+  configureFlags = []
+    ++ optional cpp "--enable-cxx"
+    ++ optional (gfortran != null) "--enable-fortran"
+    ++ optional (szip != null) "--with-szlib=${szip}"
+    ++ optionals (mpi != null) ["--enable-parallel" "CC=${mpi}/bin/mpicc"]
+    ++ optional enableShared "--enable-shared";
+
+  patches = [./bin-mv.patch];
+
+  postInstall = ''
+    find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
+  '';
+
+  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 = stdenv.lib.licenses.free; # BSD-like
+    homepage = https://www.hdfgroup.org/HDF5/;
+    platforms = stdenv.lib.platforms.unix;
+    broken = (gfortran != null) && stdenv.isDarwin;
+  };
+}