gnu: php: Improve style.

* gnu/packages/php.scm (php) [arguments]: Use gexps.
[native-inputs, inputs]: Drop labels.

Change-Id: I6244b131bfeb3583bd77ca28dd0f8ab93ff8dade
This commit is contained in:
Maxim Cournoyer 2025-09-30 09:12:53 +09:00
parent 732606d654
commit e6b0acff41
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -4,7 +4,7 @@
;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2019 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Maxim Cournoyer <maxim@guixotic.coop> ;;; Copyright © 2020, 2025 Maxim Cournoyer <maxim@guixotic.coop>
;;; Copyright © 2021, 2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2021, 2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net> ;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
;;; ;;;
@ -55,6 +55,7 @@
#:use-module (gnu packages xorg) #:use-module (gnu packages xorg)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix utils) #:use-module (guix utils)
#:use-module ((guix licenses) #:prefix license:)) #:use-module ((guix licenses) #:prefix license:))
@ -64,300 +65,311 @@
(name "php") (name "php")
(version "8.3.13") (version "8.3.13")
(home-page "https://www.php.net/") (home-page "https://www.php.net/")
(source (origin (source
(method url-fetch) (origin
(uri (string-append home-page "distributions/" (method url-fetch)
"php-" version ".tar.xz")) (uri (string-append home-page "distributions/" "php-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32 "061hhx0f6m7q0jajxym72c9a4v4nqixk5mizwm7i42d2riwbkbc9"))
"061hhx0f6m7q0jajxym72c9a4v4nqixk5mizwm7i42d2riwbkbc9")) (modules '((guix build utils)))
(modules '((guix build utils))) (snippet
(snippet '(with-directory-excursion "ext"
'(with-directory-excursion "ext" (for-each delete-file-recursively
(for-each delete-file-recursively ;; Some of the bundled libraries have no proper upstream.
;; Some of the bundled libraries have no proper upstream. ;; Ideally we'd extract these out as separate packages:
;; Ideally we'd extract these out as separate packages: ;; "mbstring/libmbfl"
;;"mbstring/libmbfl" ;; "date/lib"
;;"date/lib" ;; "bcmath/libbcmath"
;;"bcmath/libbcmath" ;; "fileinfo/libmagic" ; a patched version of libmagic
;;"fileinfo/libmagic" ; a patched version of libmagic '("gd/libgd" "pcre/pcre2lib"))))))
'("gd/libgd"
"pcre/pcre2lib"))))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:configure-flags (list
(let-syntax ((with (syntax-rules () #:configure-flags
((_ option input) #~(let-syntax ((with (syntax-rules ()
(string-append option "=" ((_ option input)
(assoc-ref %build-inputs input)))))) (string-append
(list (with "--with-bz2" "bzip2") option "="
(with "--with-curl" "curl") (assoc-ref %build-inputs input))))))
(with "--with-gdbm" "gdbm") (list (with "--with-bz2" "bzip2")
(with "--with-gettext" "libc") ; libintl.h (with "--with-curl" "curl")
(with "--with-gmp" "gmp") (with "--with-gdbm" "gdbm")
(with "--with-ldap" "openldap") (with "--with-gettext" "libc") ;libintl.h
(with "--with-ldap-sasl" "cyrus-sasl") (with "--with-gmp" "gmp")
(with "--with-pdo-pgsql" "postgresql") (with "--with-ldap" "openldap")
(with "--with-pdo-sqlite" "sqlite") (with "--with-ldap-sasl" "cyrus-sasl")
(with "--with-pgsql" "postgresql") (with "--with-pdo-pgsql" "postgresql")
;; PHPs Pspell extension, while retaining its current name, (with "--with-pdo-sqlite" "sqlite")
;; now uses the Aspell library. (with "--with-pgsql" "postgresql")
(with "--with-pspell" "aspell") ;; PHPs Pspell extension, while retaining its current name,
(with "--with-readline" "readline") ;; now uses the Aspell library.
(with "--with-sodium" "libsodium") (with "--with-pspell" "aspell")
(with "--with-sqlite3" "sqlite") (with "--with-readline" "readline")
(with "--with-tidy" "tidy") (with "--with-sodium" "libsodium")
(with "--with-xsl" "libxslt") (with "--with-sqlite3" "sqlite")
(with "--with-zlib-dir" "zlib") (with "--with-tidy" "tidy-html")
;; We could add "--with-snmp", but it requires netsnmp that (with "--with-xsl" "libxslt")
;; we don't have a package for. It is used to build the snmp (with "--with-zlib-dir" "zlib")
;; extension of php. ;; We could add "--with-snmp", but it requires netsnmp that
"--with-external-pcre" ;; we don't have a package for. It is used to build the snmp
"--with-external-gd" ;; extension of php.
"--with-iconv" "--with-external-pcre"
"--with-openssl" "--with-external-gd"
"--with-mysqli" ; Required for, e.g. wordpress "--with-iconv"
"--with-pdo-mysql" "--with-openssl"
"--with-zip" "--with-mysqli" ;Required for, e.g. wordpress
"--with-zlib" "--with-pdo-mysql"
"--enable-bcmath" ; Required for, e.g. Zabbix frontend "--with-zip"
"--enable-calendar" "--with-zlib"
"--enable-dba=shared" "--enable-bcmath" ;Required for, e.g. Zabbix frontend
"--enable-exif" "--enable-calendar"
"--enable-flatfile" "--enable-dba=shared"
"--enable-fpm" "--enable-exif"
"--enable-ftp" "--enable-flatfile"
"--enable-gd" "--enable-fpm"
"--enable-inifile" "--enable-ftp"
"--enable-intl" "--enable-gd"
"--enable-mbstring" "--enable-inifile"
"--enable-pcntl" "--enable-intl"
"--enable-sockets" "--enable-mbstring"
"--enable-sysvsem" ; Required for, e.g. Nextcloud "--enable-pcntl"
"--enable-embed" ; Required for embed SAPI "--enable-sockets"
"--enable-zts" "--enable-sysvsem" ;Required for, e.g. Nextcloud
"--disable-zend-signals" "--enable-embed" ;Required for embed SAPI
"--enable-zend-max-execution-timers")) "--enable-zts"
#:phases "--disable-zend-signals"
(modify-phases %standard-phases "--enable-zend-max-execution-timers"))
(add-after 'unpack 'do-not-record-build-flags #:phases
(lambda _ #~(modify-phases %standard-phases
;; Prevent configure flags from being stored and causing (add-after 'unpack 'do-not-record-build-flags
;; unnecessary runtime dependencies. (lambda _
(substitute* "scripts/php-config.in" ;; Prevent configure flags from being stored and causing
(("@CONFIGURE_OPTIONS@") "") ;; unnecessary runtime dependencies.
(("@PHP_LDFLAGS@") "")) (substitute* "scripts/php-config.in"
;; This file has ISO-8859-1 encoding. (("@CONFIGURE_OPTIONS@")
(with-fluids ((%default-port-encoding "ISO-8859-1")) "")
(substitute* "main/build-defs.h.in" (("@PHP_LDFLAGS@")
(("@CONFIGURE_COMMAND@") "(omitted)"))))) ""))
(add-before 'build 'patch-/bin/sh ;; This file has ISO-8859-1 encoding.
(lambda _ (with-fluids ((%default-port-encoding "ISO-8859-1"))
(substitute* '("run-tests.php" "ext/standard/proc_open.c") (substitute* "main/build-defs.h.in"
(("/bin/sh") (which "sh"))))) (("@CONFIGURE_COMMAND@")
(add-before 'check 'prepare-tests "(omitted)")))))
(lambda _ (add-before 'build 'patch-/bin/sh
;; Some of these files have ISO-8859-1 encoding, whereas others (lambda _
;; use ASCII, so we can't use a "catch-all" find-files here. (substitute* '("run-tests.php"
(with-fluids ((%default-port-encoding "ISO-8859-1")) "ext/standard/proc_open.c")
(substitute* '("ext/mbstring/tests/mb_send_mail02.phpt" (("/bin/sh")
"ext/mbstring/tests/mb_send_mail04.phpt" (which "sh")))))
"ext/mbstring/tests/mb_send_mail05.phpt" (add-before 'check 'prepare-tests
"ext/mbstring/tests/mb_send_mail06.phpt") (lambda _
(("/bin/cat") (which "cat")))) ;; Some of these files have ISO-8859-1 encoding, whereas others
(substitute* '("ext/mbstring/tests/mb_send_mail01.phpt" ;; use ASCII, so we can't use a "catch-all" find-files here.
"ext/mbstring/tests/mb_send_mail03.phpt" (with-fluids ((%default-port-encoding "ISO-8859-1"))
"ext/mbstring/tests/bug52681.phpt" (substitute* '("ext/mbstring/tests/mb_send_mail02.phpt"
"ext/standard/tests/general_functions/bug34794.phpt" "ext/mbstring/tests/mb_send_mail04.phpt"
"ext/standard/tests/general_functions/bug44667.phpt" "ext/mbstring/tests/mb_send_mail05.phpt"
"ext/standard/tests/general_functions/proc_open.phpt") "ext/mbstring/tests/mb_send_mail06.phpt")
(("/bin/cat") (which "cat"))) (("/bin/cat")
(which "cat"))))
(substitute* '("ext/mbstring/tests/mb_send_mail01.phpt"
"ext/mbstring/tests/mb_send_mail03.phpt"
"ext/mbstring/tests/bug52681.phpt"
"ext/standard/tests/general_functions/bug34794.phpt"
"ext/standard/tests/general_functions/bug44667.phpt"
"ext/standard/tests/general_functions/proc_open.phpt")
(("/bin/cat")
(which "cat")))
;; The encoding of this file is not recognized, so we simply drop it. ;; The encoding of this file is not recognized, so we simply drop it.
(delete-file "ext/mbstring/tests/mb_send_mail07.phpt") (delete-file "ext/mbstring/tests/mb_send_mail07.phpt")
(substitute* "ext/standard/tests/streams/bug60602.phpt" (substitute* "ext/standard/tests/streams/bug60602.phpt"
(("'ls'") (string-append "'" (which "ls") "'"))) (("'ls'")
(string-append "'"
(which "ls") "'")))
;; Drop tests known to fail on different architectures: ;; Drop tests known to fail on different architectures:
(for-each delete-file (for-each
,(cond delete-file
((target-arm32?) #$(cond
`(list "ext/calendar/tests/unixtojd_error1.phpt" ((target-arm32?)
"ext/opcache/tests/preload_006.phpt" '(list
"ext/opcache/tests/preload_011.phpt" "ext/calendar/tests/unixtojd_error1.phpt"
;; arm can be a lot slower, so a time-related test fails "ext/opcache/tests/preload_006.phpt"
"ext/fileinfo/tests/cve-2014-3538-nojit.phpt" "ext/opcache/tests/preload_011.phpt"
"ext/pcntl/tests/pcntl_unshare_01.phpt" ;; arm can be a lot slower, so a time-related test fails
"ext/pcre/tests/bug76514.phpt" "ext/fileinfo/tests/cve-2014-3538-nojit.phpt"
"ext/pcre/tests/preg_match_error3.phpt" "ext/pcntl/tests/pcntl_unshare_01.phpt"
"ext/pcre/tests/cache_limit.phpt" "ext/pcre/tests/bug76514.phpt"
"ext/sockets/tests/socket_getopt.phpt" "ext/pcre/tests/preg_match_error3.phpt"
"ext/sockets/tests/socket_sendrecvmsg_error.phpt" "ext/pcre/tests/cache_limit.phpt"
"ext/standard/tests/general_functions/var_export-locale.phpt" "ext/sockets/tests/socket_getopt.phpt"
"ext/standard/tests/general_functions/var_export_basic1.phpt" "ext/sockets/tests/socket_sendrecvmsg_error.phpt"
"ext/intl/tests/timezone_getErrorCodeMessage_basic.phpt" "ext/standard/tests/general_functions/var_export-locale.phpt"
"ext/intl/tests/timezone_getOffset_error.phpt" "ext/standard/tests/general_functions/var_export_basic1.phpt"
"sapi/cli/tests/cli_process_title_unix.phpt" "ext/intl/tests/timezone_getErrorCodeMessage_basic.phpt"
"Zend/tests/concat_003.phpt")) "ext/intl/tests/timezone_getOffset_error.phpt"
((target-x86-32?) "sapi/cli/tests/cli_process_title_unix.phpt"
`(list "ext/dba/tests/dba_gdbm.phpt")) "Zend/tests/concat_003.phpt"))
((target-ppc32?) ((target-x86-32?)
`(list "sapi/phpdbg/tests/watch_001.phpt" '(list "ext/dba/tests/dba_gdbm.phpt"))
"sapi/phpdbg/tests/watch_003.phpt" ((target-ppc32?)
"sapi/phpdbg/tests/watch_004.phpt")) '(list "sapi/phpdbg/tests/watch_001.phpt"
((target-ppc64le?) "sapi/phpdbg/tests/watch_003.phpt"
`(list "sapi/phpdbg/tests/watch_004.phpt"))
;; phpdbg watchpoints don't work. ((target-ppc64le?)
;; Bug tracked upstream at: '(list
;; https://bugs.php.net/bug.php?id=81408 ;; phpdbg watchpoints don't work.
"sapi/phpdbg/tests/watch_001.phpt" ;; Bug tracked upstream at:
"sapi/phpdbg/tests/watch_003.phpt" ;; https://bugs.php.net/bug.php?id=81408
"sapi/phpdbg/tests/watch_004.phpt" "sapi/phpdbg/tests/watch_001.phpt"
"sapi/phpdbg/tests/watch_005.phpt" "sapi/phpdbg/tests/watch_003.phpt"
"sapi/phpdbg/tests/watch_006.phpt")) "sapi/phpdbg/tests/watch_004.phpt"
(else `'()))) "sapi/phpdbg/tests/watch_005.phpt"
"sapi/phpdbg/tests/watch_006.phpt"))
(else ''())))
;; Drop tests that are known to fail. ;; Drop tests that are known to fail.
(for-each delete-file (for-each
'("ext/posix/tests/posix_getgrgid.phpt" ; Requires /etc/group. delete-file
"ext/posix/tests/posix_getgrnam_basic.phpt" ; Requires /etc/group. '("ext/posix/tests/posix_getgrgid.phpt" ;Requires /etc/group.
"ext/sockets/tests/bug63000.phpt" ; Fails to detect OS. "ext/posix/tests/posix_getgrnam_basic.phpt" ;Requires /etc/group.
;; These need exotic locales. "ext/sockets/tests/bug63000.phpt" ;Fails to detect OS.
"ext/standard/tests/strings/setlocale_basic1.phpt" ;; These need exotic locales.
"ext/standard/tests/strings/setlocale_basic2.phpt" "ext/standard/tests/strings/setlocale_basic1.phpt"
"ext/standard/tests/strings/setlocale_basic3.phpt" "ext/standard/tests/strings/setlocale_basic2.phpt"
"ext/standard/tests/strings/setlocale_variation1.phpt" "ext/standard/tests/strings/setlocale_basic3.phpt"
;; This bug should have been fixed in gd 2.2.2. "ext/standard/tests/strings/setlocale_variation1.phpt"
;; Is it a regression? ;; This bug should have been fixed in gd 2.2.2.
"ext/gd/tests/bug65148.phpt" ;; Is it a regression?
;; This bug should have been fixed in the gd 2.2 "ext/gd/tests/bug65148.phpt"
;; series. Perhaps a regression introduced by gd ;; This bug should have been fixed in the gd 2.2
;; 2.3.0? ;; series. Perhaps a regression introduced by gd
"ext/gd/tests/bug66590.phpt" ;; 2.3.0?
;; This bug should have been fixed in the php-5.5 "ext/gd/tests/bug66590.phpt"
;; series. Perhaps a regression introduced by gd ;; This bug should have been fixed in the php-5.5
;; 2.3.0? ;; series. Perhaps a regression introduced by gd
"ext/gd/tests/bug70102.phpt" ;; 2.3.0?
;; This bug should have been fixed in the php-5.6 "ext/gd/tests/bug70102.phpt"
;; series. Perhaps a regression introduced by gd ;; This bug should have been fixed in the php-5.6
;; 2.3.0? ;; series. Perhaps a regression introduced by gd
"ext/gd/tests/bug73869.phpt" ;; 2.3.0?
;; Some WebP related tests fail. "ext/gd/tests/bug73869.phpt"
"ext/gd/tests/webp_basic.phpt" ;; Some WebP related tests fail.
"ext/gd/tests/imagecreatefromstring_webp.phpt" "ext/gd/tests/webp_basic.phpt"
;; TODO: Enable these when libgd is built with xpm support. "ext/gd/tests/imagecreatefromstring_webp.phpt"
"ext/gd/tests/xpm2gd.phpt" ;; TODO: Enable these when libgd is built with xpm support.
"ext/gd/tests/xpm2jpg.phpt" "ext/gd/tests/xpm2gd.phpt"
"ext/gd/tests/xpm2png.phpt" "ext/gd/tests/xpm2jpg.phpt"
;; AVIF support disabled "ext/gd/tests/xpm2png.phpt"
"ext/gd/tests/avif_decode_encode.phpt" ;; AVIF support disabled
;; Typo in expected outputs "ext/gd/tests/avif_decode_encode.phpt"
"ext/gd/tests/bug72339.phpt" ;; Typo in expected outputs
;; AVIF support disabled "ext/gd/tests/bug72339.phpt"
"ext/gd/tests/imagecreatefromstring_avif.phpt" ;; AVIF support disabled
"ext/gd/tests/imagecreatefromstring_avif.phpt"
;; These tests fail due to issues in upstream gd ;; These tests fail due to issues in upstream gd
;; 2.3.3 around BICUBIC interpolation. See ;; 2.3.3 around BICUBIC interpolation. See
;; https://github.com/libgd/libgd/issues/847 ;; https://github.com/libgd/libgd/issues/847
"ext/gd/tests/bug79676.phpt" "ext/gd/tests/bug79676.phpt"
"ext/gd/tests/imageinterpolation_basic.phpt" "ext/gd/tests/imageinterpolation_basic.phpt"
"ext/gd/tests/imagescale_preserve_ratio.phpt" "ext/gd/tests/imagescale_preserve_ratio.phpt"
;; XXX: These test failures appear legitimate, needs investigation. ;; XXX: These test failures appear legitimate, needs investigation.
;; open_basedir() restriction failure. ;; open_basedir() restriction failure.
"ext/curl/tests/curl_setopt_ssl.phpt" "ext/curl/tests/curl_setopt_ssl.phpt"
;; Fail because there is no "root" in the build container's ;; Fail because there is no "root" in the build container's
;; /etc/passwd ;; /etc/passwd
"sapi/fpm/tests/bug68591-conf-test-group.phpt" "sapi/fpm/tests/bug68591-conf-test-group.phpt"
"sapi/fpm/tests/bug68591-conf-test-listen-group.phpt" "sapi/fpm/tests/bug68591-conf-test-listen-group.phpt"
"sapi/fpm/tests/bug68591-conf-test-listen-owner.phpt" "sapi/fpm/tests/bug68591-conf-test-listen-owner.phpt"
;; The test expects an Array, but instead get the contents(?). ;; The test expects an Array, but instead get the contents(?).
"ext/gd/tests/bug43073.phpt" "ext/gd/tests/bug43073.phpt"
;; imagettftext() returns wrong coordinates. ;; imagettftext() returns wrong coordinates.
"ext/gd/tests/bug48732-mb.phpt" "ext/gd/tests/bug48732-mb.phpt"
"ext/gd/tests/bug48732.phpt" "ext/gd/tests/bug48732.phpt"
;; Similarly for imageftbbox(). ;; Similarly for imageftbbox().
"ext/gd/tests/bug48801-mb.phpt" "ext/gd/tests/bug48801-mb.phpt"
"ext/gd/tests/bug48801.phpt" "ext/gd/tests/bug48801.phpt"
;; Different expected output from imagecolorallocate(). ;; Different expected output from imagecolorallocate().
"ext/gd/tests/bug53504.phpt" "ext/gd/tests/bug53504.phpt"
;; Wrong image size after scaling an image. ;; Wrong image size after scaling an image.
"ext/gd/tests/bug73272.phpt" "ext/gd/tests/bug73272.phpt"
;; PCRE with/without JIT gives different result ;; PCRE with/without JIT gives different result
"ext/pcre/tests/gh11374.phpt" "ext/pcre/tests/gh11374.phpt"
"ext/pcre/tests/gh11956.phpt" "ext/pcre/tests/gh11956.phpt"
;; reported bug only seems to affect windows ;; reported bug only seems to affect windows
"ext/standard/tests/directory/bug74589_utf8.phpt" "ext/standard/tests/directory/bug74589_utf8.phpt"
;; this test seems to be unreliable/flaky ;; this test seems to be unreliable/flaky
"sapi/cli/tests/php_cli_server_pdeathsig.phpt" "sapi/cli/tests/php_cli_server_pdeathsig.phpt"
;; This test fails on most architectures. ;; This test fails on most architectures.
"sapi/cli/tests/upload_2G.phpt")) "sapi/cli/tests/upload_2G.phpt"))
;; Accomodate two extra openssl errors flanking the expected one: ;; Accomodate two extra openssl errors flanking the expected one:
;; random number generator:RAND_{load,write}_file:Cannot open file ;; random number generator:RAND_{load,write}_file:Cannot open file
;; This is due to an invalid $HOME, but changing it in the test ;; This is due to an invalid $HOME, but changing it in the test
;; still prints the first one & changing it globally is overkill. ;; still prints the first one & changing it globally is overkill.
(substitute* "ext/openssl/tests/bug80747.phpt" (substitute* "ext/openssl/tests/bug80747.phpt"
((".*error:%s:key size too small.*" match) ((".*error:%s:key size too small.*" match)
(string-append "%s\n" match "%s\n"))) (string-append "%s\n" match "%s\n")))
;; Skip tests requiring network access. ;; Skip tests requiring network access.
(setenv "SKIP_ONLINE_TESTS" "1") (setenv "SKIP_ONLINE_TESTS" "1")
;; Without this variable, 'make test' passes regardless of failures. ;; Without this variable, 'make test' passes regardless of failures.
(setenv "REPORT_EXIT_STATUS" "1") (setenv "REPORT_EXIT_STATUS" "1")
;; Skip tests requiring I/O facilities that are unavailable in the ;; Skip tests requiring I/O facilities that are unavailable in the
;; build environment ;; build environment
(setenv "SKIP_IO_CAPTURE_TESTS" "1")))) (setenv "SKIP_IO_CAPTURE_TESTS" "1"))))
#:test-target "test")) #:test-target "test"))
(inputs (inputs
`(("aspell" ,aspell) (list aspell
("bzip2" ,bzip2) bzip2
("curl" ,curl) curl
("cyrus-sasl" ,cyrus-sasl) cyrus-sasl
("freetype" ,freetype) fontconfig
("fontconfig" ,fontconfig) freetype
("libjpeg-turbo" ,libjpeg-turbo) gd
("libpng" ,libpng) gdbm
("gd" ,gd) gmp
("gdbm" ,gdbm) gnutls
("gmp" ,gmp) icu4c
("gnutls" ,gnutls) libgcrypt
("icu4c" ,icu4c) libjpeg-turbo
("libgcrypt" ,libgcrypt) libpng
("libpng" ,libpng) libpng
("libsodium" ,libsodium) libsodium
("libxml2" ,libxml2) libx11
("libxslt" ,libxslt) libxml2
("libx11" ,libx11) libxslt
("libzip" ,libzip) libzip
("oniguruma" ,oniguruma) oniguruma
("openldap" ,openldap) openldap
("openssl" ,openssl) openssl
("pcre" ,pcre2) pcre2
("postgresql" ,postgresql) postgresql
("readline" ,readline) readline
("sqlite" ,sqlite) sqlite
("tidy" ,tidy-html) tidy-html
("zlib" ,zlib))) zlib))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) (list bison
("bison" ,bison) gettext-minimal
("gettext" ,gettext-minimal) pkg-config
("procps" ,procps))) ; for tests procps)) ;for tests
(synopsis "PHP programming language") (synopsis "PHP programming language")
(description (description
"PHP (PHP Hypertext Processor) is a server-side (CGI) scripting "PHP (PHP Hypertext Processor) is a server-side (CGI) scripting
language designed primarily for web development but is also used as language designed primarily for web development but is also used as
a general-purpose programming language. PHP code may be embedded into a general-purpose programming language. PHP code may be embedded into
HTML code, or it can be used in combination with various web template HTML code, or it can be used in combination with various web template
systems, web content management systems and web frameworks." ) systems, web content management systems and web frameworks.")
(license (list (license (list (license:non-copyleft "file://LICENSE") ;The PHP license.
(license:non-copyleft "file://LICENSE") ; The PHP license. (license:non-copyleft "file://Zend/LICENSE") ;The Zend license.
(license:non-copyleft "file://Zend/LICENSE") ; The Zend license. license:lgpl2.1 ;ext/mbstring/libmbfl
license:lgpl2.1 ; ext/mbstring/libmbfl license:lgpl2.1+ ;ext/bcmath/libbcmath
license:lgpl2.1+ ; ext/bcmath/libbcmath license:bsd-2 ;ext/fileinfo/libmagic
license:bsd-2 ; ext/fileinfo/libmagic license:expat)))) ; ext/date/lib
license:expat)))) ; ext/date/lib