misc pkgs: Manual fixup pkgconfig nativeBuildInputs after sed

Importantly, this included regenerating pkgs/servers/x11/xorg, to
clobber the old sed.
This commit is contained in:
John Ericson
2017-09-05 18:03:42 -04:00
parent 531e4b80c9
commit f8a18cd4cf
29 changed files with 312 additions and 293 deletions

View File

@@ -39,8 +39,10 @@ let
in
{
nativeBuildInputs = [ pkgconfig ];
atk = attrs: { buildInputs = [ gtk2 pcre ]; };
atk = attrs: {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 pcre ];
};
bundler = attrs:
let
@@ -58,7 +60,7 @@ in
};
cairo = attrs: {
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 pcre xlibs.libpthreadstubs xlibs.libXdmcp];
};
@@ -91,16 +93,20 @@ in
buildInputs = [ gpgme ];
};
nativeBuildInputs = [ pkgconfig ];
gio2 = attrs: { buildInputs = [ gtk2 pcre ]; };
gio2 = attrs: {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 pcre ];
};
gitlab-markup = attrs: { meta.priority = 1; };
nativeBuildInputs = [ pkgconfig ];
glib2 = attrs: { buildInputs = [ gtk2 pcre ]; };
glib2 = attrs: {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 pcre ];
};
gtk2 = attrs: {
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 pcre xlibs.libpthreadstubs xlibs.libXdmcp];
# CFLAGS must be set for this gem to detect gdkkeysyms.h correctly
CFLAGS = "-I${gtk2.dev}/include/gtk-2.0 -I/non-existent-path";