about summary refs log tree commit diff
path: root/pkgs/development/interpreters/php
diff options
context:
space:
mode:
authortalyz <kim.lindberger@gmail.com>2020-04-29 12:46:26 +0200
committertalyz <kim.lindberger@gmail.com>2020-04-29 13:45:48 +0200
commit5cad1b4aff3054b9c3ab97c420cce7b09b342dc8 (patch)
tree3f431327a20fb33e70e14a3f4ff9bea37de1478d /pkgs/development/interpreters/php
parent3bfd4e864f6c97c47efb1a353566e4fe4402b611 (diff)
downloadnixlib-5cad1b4aff3054b9c3ab97c420cce7b09b342dc8.tar
nixlib-5cad1b4aff3054b9c3ab97c420cce7b09b342dc8.tar.gz
nixlib-5cad1b4aff3054b9c3ab97c420cce7b09b342dc8.tar.bz2
nixlib-5cad1b4aff3054b9c3ab97c420cce7b09b342dc8.tar.lz
nixlib-5cad1b4aff3054b9c3ab97c420cce7b09b342dc8.tar.xz
nixlib-5cad1b4aff3054b9c3ab97c420cce7b09b342dc8.tar.zst
nixlib-5cad1b4aff3054b9c3ab97c420cce7b09b342dc8.zip
php: Get rid of the phpXXbase attributes, update docs
Since the introduction of php.unwrapped there's no real need for the
phpXXbase attributes, so let's remove them to lessen potential
confusion and clutter. Also update the docs to make it clear how to
get hold of an unwrapped PHP if needed.
Diffstat (limited to 'pkgs/development/interpreters/php')
-rw-r--r--pkgs/development/interpreters/php/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index 57a0b716979e..a67a26f083bf 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -302,5 +302,5 @@ let
   php72 = php72base.withExtensions defaultPhpExtensionsWithHash;
 
 in {
-  inherit php72base php73base php74base php72 php73 php74;
+  inherit php72 php73 php74;
 }