libpng: 1.6.55 -> 1.6.56 (#505751)

This commit is contained in:
Vladimír Čunát
2026-04-01 17:40:05 +00:00
committed by GitHub
+4 -4
View File
@@ -11,10 +11,10 @@
assert zlib != null;
let
patchVersion = "1.6.54";
patchVersion = "1.6.56";
patch_src = fetchurl {
url = "mirror://sourceforge/libpng-apng/libpng-${patchVersion}-apng.patch.gz";
hash = "sha256-Vjj8RQDq9IRXtNfJ5VP9gqsB13MEpwB32DNoQp1E8bQ=";
hash = "sha256-nOMtSidjoqxfJYcmui9J6QETJ8HujDCGKjLQ8wiJ++g=";
};
whenPatched = lib.optionalString apngSupport;
@@ -24,11 +24,11 @@ let
in
stdenv'.mkDerivation (finalAttrs: {
pname = "libpng" + whenPatched "-apng";
version = "1.6.55";
version = "1.6.56";
src = fetchurl {
url = "mirror://sourceforge/libpng/libpng-${finalAttrs.version}.tar.xz";
hash = "sha256-2SVyKGSDetWuKoIHDUsuBgPccq9EvUV8OWIpgli46C0=";
hash = "sha256-99i/FgG3gE9YOiVKs0OmVJymzyfSVcMCxHry2dNqbxg=";
};
postPatch =
whenPatched "gunzip < ${patch_src} | patch -Np1"