diff options
| author | Wilko Meyer <w@wmeyer.eu> | 2026-02-07 14:04:46 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 22:33:45 +0100 |
| commit | ea510232e6eb003bdbaf996e648eb351824aa9aa (patch) | |
| tree | 43ecb414a0ea86124592f33b33c514f649ec4e7c | |
| parent | e36f3a691e1194aa111cbbccb525c64579210565 (diff) | |
gnu: Add php-8.5.
* gnu/packages/php.scm (php-8.5): New variable, formerly known as "php".
(php): Update to php-8.5.
Change-Id: I4bf6026695202226c14757bccee83a5b510d4eee
Signed-off-by: Andreas Enge <andreas@enge.fr>
| -rw-r--r-- | gnu/packages/php.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm index 1beb460c004..4955e2563ed 100644 --- a/gnu/packages/php.scm +++ b/gnu/packages/php.scm @@ -62,7 +62,10 @@ #:use-module (guix utils) #:use-module ((guix licenses) #:prefix license:)) -(define-public php +;; current PHP version +;; actively supported until: 31 Dec 2027 +;; security support until: 31 Dec 2029 +(define-public php-8.5 (package (name "php") (version "8.5.2") @@ -378,3 +381,6 @@ systems, web content management systems and web frameworks.") license:lgpl2.1+ ;ext/bcmath/libbcmath license:bsd-2 ;ext/fileinfo/libmagic license:expat)))) ; ext/date/lib + +;; php should always point to the latest php version +(define-public php php-8.5) |
