tilix: fix build issue with ldc 1.31+

+10
+10
pkgs/applications/terminal-emulators/tilix/default.nix
··· 16 , libunwind 17 , appstream 18 , nixosTests 19 }: 20 21 stdenv.mkDerivation rec { ··· 53 gtkd 54 libsecret 55 libunwind 56 ]; 57 58 postPatch = ''
··· 16 , libunwind 17 , appstream 18 , nixosTests 19 + , fetchpatch 20 }: 21 22 stdenv.mkDerivation rec { ··· 54 gtkd 55 libsecret 56 libunwind 57 + ]; 58 + 59 + patches = [ 60 + # https://github.com/gnunn1/tilix/issues/2151 61 + (fetchpatch { 62 + name = "tilix-replace-std-xml-with-gmarkup.patch"; 63 + url = "https://github.com/gnunn1/tilix/commit/b02779737997a02b98b690e6f8478d28d5e931a5.patch"; 64 + hash = "sha256-6p+DomJEZ/hCW8RTjttKsTDsgHZ6eFKj/71TU5O/Ysg="; 65 + }) 66 ]; 67 68 postPatch = ''