xmlcopyeditor: fix build with libxml2 2.12

+7
+7
pkgs/applications/editors/xmlcopyeditor/default.nix
··· 25 25 26 26 patches = [ ./xmlcopyeditor.patch ]; 27 27 28 + # error: cannot initialize a variable of type 'xmlErrorPtr' (aka '_xmlError *') 29 + # with an rvalue of type 'const xmlError *' (aka 'const _xmlError *') 30 + postPatch = '' 31 + substituteInPlace src/wraplibxml.cpp \ 32 + --replace "xmlErrorPtr err" "const xmlError *err" 33 + ''; 34 + 28 35 nativeBuildInputs = [ 29 36 intltool 30 37 pkg-config