rPackages.Rhdf5lib: use newer hdf5

This commit is contained in:
Justin Bedo 2024-03-25 14:11:53 +11:00
parent 6bd9d579ea
commit 9fcadd0133
No known key found for this signature in database
GPG Key ID: 2C18202C56C182BD

View File

@ -1432,12 +1432,10 @@ let
buildInputs = attrs.buildInputs ++ [ opencvGtk ];
});
Rhdf5lib = let
hdf5 = pkgs.hdf5_1_10.overrideAttrs (attrs: {configureFlags = attrs.configureFlags ++ ["--enable-cxx"];});
in old.Rhdf5lib.overrideAttrs (attrs: {
propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ hdf5.dev pkgs.libaec ];
Rhdf5lib = old.Rhdf5lib.overrideAttrs (attrs: {
propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ pkgs.hdf5.dev pkgs.libaec ];
patches = [ ./patches/Rhdf5lib.patch ];
passthru.hdf5 = hdf5;
passthru.hdf5 = pkgs.hdf5;
});
rhdf5filters = old.rhdf5filters.overrideAttrs (attrs: {