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 7 pkg-config, 8 8 texinfo, 9 9 lzlib, 10 + fetchpatch, 10 11 }: 11 12 12 13 stdenv.mkDerivation rec { ··· 29 30 propagatedBuildInputs = [ 30 31 guile 31 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 + }) 32 41 ]; 33 42 34 43 makeFlags = [ "GUILE_AUTO_COMPILE=0" ];