php: Set maintainer team as maintainers

Also passthrough the meta of the package to have description,
homepage, license, maintainers and other metadata passed through to
the commonly used attribute.
This commit is contained in:
Elis Hirwing
2020-04-22 06:47:58 +02:00
parent a222fac434
commit d3605d66ed
@@ -138,9 +138,9 @@ let
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "An HTML-embedded scripting language"; description = "An HTML-embedded scripting language";
homepage = "https://www.php.net/"; homepage = "https://www.php.net";
license = licenses.php301; license = licenses.php301;
maintainers = with maintainers; [ globin etu ma27 ]; maintainers = teams.php.members;
platforms = platforms.all; platforms = platforms.all;
outputsToInstall = [ "out" "dev" ]; outputsToInstall = [ "out" "dev" ];
}; };
@@ -194,6 +194,7 @@ let
passthru = { passthru = {
inherit buildEnv withExtensions enabledExtensions; inherit buildEnv withExtensions enabledExtensions;
inherit (php-packages) packages extensions; inherit (php-packages) packages extensions;
inherit (php) meta;
}; };
paths = [ php ]; paths = [ php ];
postBuild = '' postBuild = ''