tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
xmlcopyeditor: fix build with libxml2 2.12
Weijia Wang
2 years ago
7bd712b1
1a5412e1
+7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
editors
xmlcopyeditor
default.nix
+7
pkgs/applications/editors/xmlcopyeditor/default.nix
···
25
25
26
26
patches = [ ./xmlcopyeditor.patch ];
27
27
28
28
+
# error: cannot initialize a variable of type 'xmlErrorPtr' (aka '_xmlError *')
29
29
+
# with an rvalue of type 'const xmlError *' (aka 'const _xmlError *')
30
30
+
postPatch = ''
31
31
+
substituteInPlace src/wraplibxml.cpp \
32
32
+
--replace "xmlErrorPtr err" "const xmlError *err"
33
33
+
'';
34
34
+
28
35
nativeBuildInputs = [
29
36
intltool
30
37
pkg-config