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

@@ -11,9 +11,8 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ nspr ];
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig ] ++ lib.optional stdenv.isArm autoconf213;
buildInputs = [ perl python2 zip ];
nativeBuildInputs = if stdenv.isArm then [ autoconf213 ] else [];
postUnpack = "sourceRoot=\${sourceRoot}/js/src";