mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
9 lines
257 B
Nix
9 lines
257 B
Nix
{ stdenv, php, autoreconfHook }:
|
|
|
|
args: stdenv.mkDerivation (args // {
|
|
buildInputs = [ php autoreconfHook ] ++ args.buildInputs or [];
|
|
|
|
makeFlags = [ "EXTENSION_DIR=$(out)/lib/php/extensions" ] ++ args.makeFlags or [];
|
|
|
|
autoreconfPhase = "phpize";
|
|
})
|