about summary refs log tree commit diff
path: root/pkgs/top-level
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/top-level
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/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 7f2c34039b46..c960ebcf7c3c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -9496,7 +9496,7 @@ in
 
   inherit (callPackage ../development/interpreters/php {
     stdenv = if stdenv.cc.isClang then llvmPackages_6.stdenv else stdenv;
-  }) php74 php73 php72 php74base php73base php72base;
+  }) php74 php73 php72;
 
   picoc = callPackage ../development/interpreters/picoc {};