summary refs log tree commit diff
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2020-04-19 20:48:06 +0200
committerElis Hirwing <elis@hirwing.se>2020-04-22 06:47:58 +0200
commitd3605d66eda9cfcfd4b6c6181869eeffe60162ef (patch)
tree105bb487eba2847a45ab918060edc3b4bf98a3a3
parenta222fac434f81639fa056b0eeec76066e0d88fc3 (diff)
downloadnixpkgs-d3605d66eda9cfcfd4b6c6181869eeffe60162ef.tar
nixpkgs-d3605d66eda9cfcfd4b6c6181869eeffe60162ef.tar.gz
nixpkgs-d3605d66eda9cfcfd4b6c6181869eeffe60162ef.tar.bz2
nixpkgs-d3605d66eda9cfcfd4b6c6181869eeffe60162ef.tar.lz
nixpkgs-d3605d66eda9cfcfd4b6c6181869eeffe60162ef.tar.xz
nixpkgs-d3605d66eda9cfcfd4b6c6181869eeffe60162ef.tar.zst
nixpkgs-d3605d66eda9cfcfd4b6c6181869eeffe60162ef.zip
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.
-rw-r--r--pkgs/development/interpreters/php/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index 1d6576b383c..2dada0082e2 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -138,9 +138,9 @@ let
 
     meta = with stdenv.lib; {
       description = "An HTML-embedded scripting language";
-      homepage = "https://www.php.net/";
+      homepage = "https://www.php.net";
       license = licenses.php301;
-      maintainers = with maintainers; [ globin etu ma27 ];
+      maintainers = teams.php.members;
       platforms = platforms.all;
       outputsToInstall = [ "out" "dev" ];
     };
@@ -194,6 +194,7 @@ let
             passthru = {
               inherit buildEnv withExtensions enabledExtensions;
               inherit (php-packages) packages extensions;
+              inherit (php) meta;
             };
             paths = [ php ];
             postBuild = ''