build-pecl: honour nativeBuildInputs

Otherwise certain extensions are unable to locate pkgconfig.
This commit is contained in:
Piotr Bogdan 2017-11-02 16:28:06 +00:00
parent a7d25d4bbc
commit eb33f5bc04

View file

@ -2,6 +2,7 @@
{ name
, buildInputs ? []
, nativeBuildInputs ? []
, makeFlags ? []
, src ? fetchurl {
url = "http://pecl.php.net/get/${name}.tgz";
@ -15,7 +16,7 @@ stdenv.mkDerivation (args // {
inherit src;
nativeBuildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook ] ++ nativeBuildInputs;
buildInputs = [ php ] ++ buildInputs;
makeFlags = [ "EXTENSION_DIR=$(out)/lib/php/extensions" ] ++ makeFlags;