Merge pull request #273571 from bobby285271/upd/cinnamon-libxml2-fix

xed-editor: Backport libxml2 2.12 build fix

authored by Bobby Rong and committed by GitHub 45206ebb c23c5dae

+10
+10
pkgs/applications/editors/xed-editor/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , libxml2 5 6 , libpeas 6 7 , glib ··· 27 28 rev = version; 28 29 sha256 = "sha256-IpUBB7Viwc/nRfwzFllRiWoOmUxRZzS2BcxyM7W3oHI="; 29 30 }; 31 + 32 + patches = [ 33 + # Fix missing include for libxml2 2.12 34 + # https://github.com/linuxmint/xed/pull/611 35 + (fetchpatch { 36 + url = "https://github.com/linuxmint/xed/commit/28cb2e8136c1bfe90faf5f2341bde66156990778.patch"; 37 + hash = "sha256-AqIb7Jj19SF3tIriPwn1JeB7niCmPbBsLE4ch2AX7fk="; 38 + }) 39 + ]; 30 40 31 41 nativeBuildInputs = [ 32 42 meson