diff options
| author | Serhii Zhuravel <1804871+dxops@users.noreply.github.com> | 2021-06-02 20:25:59 +0300 |
|---|---|---|
| committer | Serhii Zhuravel <szhuravel@oroinc.com> | 2021-06-16 11:23:00 +0300 |
| commit | c46cf1c4e6b58870c2531f13ddb1334d1a818946 (patch) | |
| tree | 3224bd3cbb1e1792534b597f46a883059ca1faed | |
| parent | [Backport release-21.05] texlive: allow substitutes for texlive packages (#12... (diff) | |
| download | nixpkgs-c46cf1c4e6b58870c2531f13ddb1334d1a818946.tar.gz | |
Allow to extend PHP_INI_SCAN_DIR
Fixes #109383
Master 9fb4d19c2ec8d86439457e4cc10bc12becdc7268
| -rw-r--r-- | pkgs/development/interpreters/php/generic.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/php/generic.nix b/pkgs/development/interpreters/php/generic.nix index 13fd811c4ea8..46ca2e6ebdaf 100644 --- a/pkgs/development/interpreters/php/generic.nix +++ b/pkgs/development/interpreters/php/generic.nix @@ -125,15 +125,15 @@ let ln -s ${extraInit} $out/lib/php.ini if test -e $out/bin/php; then - wrapProgram $out/bin/php --set PHP_INI_SCAN_DIR $out/lib + wrapProgram $out/bin/php --prefix PHP_INI_SCAN_DIR : $out/lib fi if test -e $out/bin/php-fpm; then - wrapProgram $out/bin/php-fpm --set PHP_INI_SCAN_DIR $out/lib + wrapProgram $out/bin/php-fpm --prefix PHP_INI_SCAN_DIR : $out/lib fi if test -e $out/bin/phpdbg; then - wrapProgram $out/bin/phpdbg --set PHP_INI_SCAN_DIR $out/lib + wrapProgram $out/bin/phpdbg --prefix PHP_INI_SCAN_DIR : $out/lib fi ''; }; |
