guile-lzlib: fix build with gcc14

- add patch from upstream commit fixing build with gcc14:
https://notabug.org/guile-lzlib/guile-lzlib/commit/3fd524d1f0e0b9beeca53c514620b970a762e3da.patch

ghpzin dec7bc25 7491caeb

+9
+9
pkgs/by-name/gu/guile-lzlib/package.nix
··· 7 pkg-config, 8 texinfo, 9 lzlib, 10 }: 11 12 stdenv.mkDerivation rec { ··· 29 propagatedBuildInputs = [ 30 guile 31 lzlib 32 ]; 33 34 makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
··· 7 pkg-config, 8 texinfo, 9 lzlib, 10 + fetchpatch, 11 }: 12 13 stdenv.mkDerivation rec { ··· 30 propagatedBuildInputs = [ 31 guile 32 lzlib 33 + ]; 34 + 35 + patches = [ 36 + # fix support for gcc14 37 + (fetchpatch { 38 + url = "https://notabug.org/guile-lzlib/guile-lzlib/commit/3fd524d1f0e0b9beeca53c514620b970a762e3da.patch"; 39 + hash = "sha256-I1SSdygNixjx5LL/UPOgEGLILWWYKKfOGoCvXM5Sp/E="; 40 + }) 41 ]; 42 43 makeFlags = [ "GUILE_AUTO_COMPILE=0" ];