mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
build-pecl: honour nativeBuildInputs
Otherwise certain extensions are unable to locate pkgconfig.
This commit is contained in:
parent
a7d25d4bbc
commit
eb33f5bc04
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user