1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-08-03 21:51:30 +02:00

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>
This commit is contained in:
Wilko Meyer
2026-02-07 14:04:46 +01:00
committed by Andreas Enge
parent e36f3a691e
commit ea510232e6
+7 -1
View File
@@ -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)