mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
php: Wrap the programs and provide an environment variable instead of a flag
This commit is contained in:
parent
9ac0d9ad61
commit
82cd2fbbf4
1 changed files with 7 additions and 4 deletions
|
@ -192,10 +192,13 @@ let
|
||||||
};
|
};
|
||||||
paths = [ php ];
|
paths = [ php ];
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
wrapProgram $out/bin/php \
|
cp ${extraInit} $out/lib/custom-php.ini
|
||||||
--add-flags "-c ${extraInit}"
|
|
||||||
wrapProgram $out/bin/php-fpm \
|
wrapProgram $out/bin/php --set PHP_INI_SCAN_DIR $out/lib
|
||||||
--add-flags "-c ${extraInit}"
|
|
||||||
|
if test -e $out/bin/php-fpm; then
|
||||||
|
wrapProgram $out/bin/php-fpm --set PHP_INI_SCAN_DIR $out/lib
|
||||||
|
fi
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue