summary refs log tree commit diff
path: root/pkgs/tools/misc/hdf5
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-10-31 14:54:05 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-10-31 14:54:05 +0000
commit11595eb34607726beef5682445d7b812f6e3c290 (patch)
tree130c4a4e0baf92b7ce8b54a9f5a344e09d04abb1 /pkgs/tools/misc/hdf5
parent2a3e5c787282bad03fe143e20021dbc1613e5476 (diff)
downloadnixpkgs-11595eb34607726beef5682445d7b812f6e3c290.tar
nixpkgs-11595eb34607726beef5682445d7b812f6e3c290.tar.gz
nixpkgs-11595eb34607726beef5682445d7b812f6e3c290.tar.bz2
nixpkgs-11595eb34607726beef5682445d7b812f6e3c290.tar.lz
nixpkgs-11595eb34607726beef5682445d7b812f6e3c290.tar.xz
nixpkgs-11595eb34607726beef5682445d7b812f6e3c290.tar.zst
nixpkgs-11595eb34607726beef5682445d7b812f6e3c290.zip
hdf5: 1.14.2 -> 1.14.3
Diffstat (limited to 'pkgs/tools/misc/hdf5')
-rw-r--r--pkgs/tools/misc/hdf5/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/hdf5/default.nix b/pkgs/tools/misc/hdf5/default.nix
index 39c0b680b00..89702cfd1a7 100644
--- a/pkgs/tools/misc/hdf5/default.nix
+++ b/pkgs/tools/misc/hdf5/default.nix
@@ -27,7 +27,7 @@ assert !cppSupport || !mpiSupport;
 let inherit (lib) optional optionals; in
 
 stdenv.mkDerivation rec {
-  version = "1.14.2";
+  version = "1.14.3";
   pname = "hdf5"
     + lib.optionalString cppSupport "-cpp"
     + lib.optionalString fortranSupport "-fortran"
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
         majorMinorPatch = with lib.versions; "${major version}.${minor version}.${patch version}";
       in
       "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${majorMinor}/hdf5-${majorMinorPatch}/src/hdf5-${version}.tar.bz2";
-    sha256 = "sha256-6jxeJX7zIq9ed/weUurTrWvzu0rAZIDdF+45ANeiTPs=";
+    sha256 = "sha256-lCXyJO110SgLtG1vJpI92Tj5BA5+rr9X5m7HNXwI+Rc=";
   };
 
   passthru = {