Merge pull request #84721 from talyz/php-dont-inherit-dev
php.buildEnv: Don't inherit dev from the original php
This commit is contained in:
commit
258980146c
@ -189,7 +189,7 @@ let
|
|||||||
in
|
in
|
||||||
symlinkJoin {
|
symlinkJoin {
|
||||||
name = "php-with-extensions-${version}";
|
name = "php-with-extensions-${version}";
|
||||||
inherit (php) version dev;
|
inherit (php) version;
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
passthru = {
|
passthru = {
|
||||||
inherit buildEnv withExtensions enabledExtensions;
|
inherit buildEnv withExtensions enabledExtensions;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
{ stdenv, fetchFromGitHub, which
|
{ stdenv, fetchFromGitHub, which
|
||||||
, withPython2 ? false, python2
|
, withPython2 ? false, python2
|
||||||
, withPython3 ? true, python3, ncurses
|
, withPython3 ? true, python3, ncurses
|
||||||
, withPHP72 ? false, php72
|
, withPHP72 ? false, php72base
|
||||||
, withPHP73 ? true, php73
|
, withPHP73 ? true, php73base
|
||||||
, withPerl528 ? false, perl528
|
, withPerl528 ? false, perl528
|
||||||
, withPerl530 ? true, perl530
|
, withPerl530 ? true, perl530
|
||||||
, withPerldevel ? false, perldevel
|
, withPerldevel ? false, perldevel
|
||||||
@ -26,8 +26,8 @@ let
|
|||||||
config.php.fpm = false;
|
config.php.fpm = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
php72-unit = php72.override phpConfig;
|
php72-unit = php72base.override phpConfig;
|
||||||
php73-unit = php73.override phpConfig;
|
php73-unit = php73base.override phpConfig;
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
version = "1.16.0";
|
version = "1.16.0";
|
||||||
pname = "unit";
|
pname = "unit";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user