Merge pull request #87138 from lukegb/fix-php
php: correctly set outputsToInstall after withExtensions.
This commit is contained in:
commit
2e69f8977d
|
@ -113,7 +113,9 @@ let
|
||||||
unwrapped = php;
|
unwrapped = php;
|
||||||
tests = nixosTests.php;
|
tests = nixosTests.php;
|
||||||
inherit (php-packages) packages extensions;
|
inherit (php-packages) packages extensions;
|
||||||
inherit (php) meta;
|
meta = php.meta // {
|
||||||
|
outputsToInstall = [ "out" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
paths = [ php ];
|
paths = [ php ];
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
|
|
Loading…
Reference in New Issue