about summary refs log tree commit diff
path: root/pkgs/top-level/aliases.nix
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2020-03-22 14:32:42 +0100
committerElis Hirwing <elis@hirwing.se>2020-04-03 10:11:11 +0200
commita5f77d6ea29935ac64777f709a32ee65faa1b0e7 (patch)
treef44959f8ce7339846e2a0114b892251dfc16a41b /pkgs/top-level/aliases.nix
parentbe7bf5a18d155b9eb6de3a63ca0943b4c40856ae (diff)
downloadnixlib-a5f77d6ea29935ac64777f709a32ee65faa1b0e7.tar
nixlib-a5f77d6ea29935ac64777f709a32ee65faa1b0e7.tar.gz
nixlib-a5f77d6ea29935ac64777f709a32ee65faa1b0e7.tar.bz2
nixlib-a5f77d6ea29935ac64777f709a32ee65faa1b0e7.tar.lz
nixlib-a5f77d6ea29935ac64777f709a32ee65faa1b0e7.tar.xz
nixlib-a5f77d6ea29935ac64777f709a32ee65faa1b0e7.tar.zst
nixlib-a5f77d6ea29935ac64777f709a32ee65faa1b0e7.zip
php-unit: Drop the declaration of the php-unit attributes since they aren't used
Diffstat (limited to 'pkgs/top-level/aliases.nix')
-rw-r--r--pkgs/top-level/aliases.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 655bee800d51..b1c2e5dd7522 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -339,6 +339,36 @@ mapAliases ({
   php73Packages-embed = phpPackages-embed;
   php72Packages-embed = phpPackages-embed;
 
+  php-unit = throw ''
+    php*-unit has been dropped, you can build the same package by using
+     something similar with this following snippet:
+    (php74.override {
+      config.php.embed = true;
+      config.php.apxs2 = false;
+      config.php.systemd = false;
+      config.php.phpdbg = false;
+      config.php.cgi = false;
+      config.php.fpm = false; })
+  ''; # added 2020-04-01
+  php72-unit = php-unit; # added 2020-04-01
+  php73-unit = php-unit; # added 2020-04-01
+  php74-unit = php-unit; # added 2020-04-01
+
+  phpPackages-unit = throw ''
+    php*Packages-unit has been dropped, you can build the same package by using
+     something similar with this following snippet:
+    (php74.override {
+      config.php.embed = true;
+      config.php.apxs2 = false;
+      config.php.systemd = false;
+      config.php.phpdbg = false;
+      config.php.cgi = false;
+      config.php.fpm = false; }).packages
+  ''; # added 2020-04-01
+  php74Packages-unit = phpPackages-unit;
+  php73Packages-unit = phpPackages-unit;
+  php72Packages-unit = phpPackages-unit;
+
   pidgin-with-plugins = pidgin; # added 2016-06
   pidginlatex = pidgin-latex; # added 2018-01-08
   pidginlatexSF = pidgin-latex; # added 2014-11-02