about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-07-10 18:02:00 +0100
committerGitHub <noreply@github.com>2022-07-10 18:02:00 +0100
commit4b6c8c23b1a326724382adbe98709d10972f9bbe (patch)
tree2d0f0ed31f9c3816118d860a930d60c407345752 /pkgs
parent60d0de8a48b3f1f45d1881079348d506039c5f10 (diff)
parentb3aee32add2396c1521b83b5c6c92e4c53108bcc (diff)
Merge pull request #180085 from jiegec/hdf5_1_10
hdf5_1_10: 1.10.6 -> 1.10.9
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/hdf5/1.10.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/tools/misc/hdf5/1.10.nix b/pkgs/tools/misc/hdf5/1.10.nix
index 74d8fce599a84..fbfac18414c88 100644
--- a/pkgs/tools/misc/hdf5/1.10.nix
+++ b/pkgs/tools/misc/hdf5/1.10.nix
@@ -12,12 +12,11 @@
 let inherit (lib) optional optionals; in
 
 stdenv.mkDerivation rec {
-  # pinned to 1.10.6 for pythonPackages.tables v3.6.1. tables has test errors for hdf5 > 1.10.6. https://github.com/PyTables/PyTables/issues/845
-  version = "1.10.6";
+  version = "1.10.9";
   pname = "hdf5";
   src = fetchurl {
     url = "https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${lib.versions.majorMinor version}/${pname}-${version}/src/${pname}-${version}.tar.bz2";
-    sha256 = "1gf38x51128hn00744358w27xgzjk0ff4wra4yxh2lk804ck1mh9";
+    sha256 = "sha256-AMS+cJbzb9yvpPl04SbGwUEkKOOOvHsYHZB0WeeB8ZE=";
   };
 
   outputs = [ "out" "dev" ];
@@ -31,9 +30,7 @@ stdenv.mkDerivation rec {
   configureFlags = optional enableShared "--enable-shared"
     ++ optional javaSupport "--enable-java";
 
-  patches = [
-    ./bin-mv.patch
-  ];
+  patches = [ ];
 
   postInstall = ''
     find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' +