mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
lndir: get rid of xorgproto dependency
This commit is contained in:
parent
e416d2f8b9
commit
466f1d85d2
@ -598,8 +598,16 @@ self: super:
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
lndir = super.lndir.overrideAttrs (attrs: {
|
lndir = super.lndir.overrideAttrs (attrs: {
|
||||||
|
buildInputs = [];
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
export XPROTO_CFLAGS=" "
|
||||||
|
export XPROTO_LIBS=" "
|
||||||
substituteInPlace lndir.c \
|
substituteInPlace lndir.c \
|
||||||
|
--replace '<X11/Xos.h>' '<string.h>' \
|
||||||
|
--replace '<X11/Xfuncproto.h>' '<unistd.h>' \
|
||||||
|
--replace '_X_ATTRIBUTE_PRINTF(1,2)' '__attribute__((__format__(__printf__,1,2)))' \
|
||||||
|
--replace '_X_ATTRIBUTE_PRINTF(2,3)' '__attribute__((__format__(__printf__,2,3)))' \
|
||||||
|
--replace '_X_NORETURN' '__attribute__((noreturn))' \
|
||||||
--replace 'n_dirs--;' ""
|
--replace 'n_dirs--;' ""
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user