about summary refs log tree commit diff
path: root/pkgs/applications/editors/xed-editor/default.nix
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-12-11 23:21:45 +0800
committerBobby Rong <rjl931189261@126.com>2023-12-11 23:24:04 +0800
commit336c61e279883af1f0ec7b2295161ca71418248f (patch)
treeab096caad5db2163e366f7c7a1931dee75fb8083 /pkgs/applications/editors/xed-editor/default.nix
parente9ef8a102c555da4f8f417fe5cf5bd539d8a38b7 (diff)
xed-editor: Backport libxml2 2.12 build fix
Diffstat (limited to 'pkgs/applications/editors/xed-editor/default.nix')
-rw-r--r--pkgs/applications/editors/xed-editor/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/applications/editors/xed-editor/default.nix b/pkgs/applications/editors/xed-editor/default.nix
index a99eae639f029..08d4eeb469d07 100644
--- a/pkgs/applications/editors/xed-editor/default.nix
+++ b/pkgs/applications/editors/xed-editor/default.nix
@@ -1,6 +1,7 @@
 { stdenv
 , lib
 , fetchFromGitHub
+, fetchpatch
 , libxml2
 , libpeas
 , glib
@@ -28,6 +29,15 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-IpUBB7Viwc/nRfwzFllRiWoOmUxRZzS2BcxyM7W3oHI=";
   };
 
+  patches = [
+    # Fix missing include for libxml2 2.12
+    # https://github.com/linuxmint/xed/pull/611
+    (fetchpatch {
+      url = "https://github.com/linuxmint/xed/commit/28cb2e8136c1bfe90faf5f2341bde66156990778.patch";
+      hash = "sha256-AqIb7Jj19SF3tIriPwn1JeB7niCmPbBsLE4ch2AX7fk=";
+    })
+  ];
+
   nativeBuildInputs = [
     meson
     pkg-config