mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
tilix: fix build issue with ldc 1.31+
This commit is contained in:
parent
6dee6324c7
commit
8be79ddf0a
@ -16,6 +16,7 @@
|
||||
, libunwind
|
||||
, appstream
|
||||
, nixosTests
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -55,6 +56,15 @@ stdenv.mkDerivation rec {
|
||||
libunwind
|
||||
];
|
||||
|
||||
patches = [
|
||||
# https://github.com/gnunn1/tilix/issues/2151
|
||||
(fetchpatch {
|
||||
name = "tilix-replace-std-xml-with-gmarkup.patch";
|
||||
url = "https://github.com/gnunn1/tilix/commit/b02779737997a02b98b690e6f8478d28d5e931a5.patch";
|
||||
hash = "sha256-6p+DomJEZ/hCW8RTjttKsTDsgHZ6eFKj/71TU5O/Ysg=";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
chmod +x meson_post_install.py
|
||||
patchShebangs meson_post_install.py
|
||||
|
Loading…
Reference in New Issue
Block a user