updating nginx and derivated

This commit is contained in:
Jean-François GUILLAUME 2024-09-23 10:52:41 +00:00
commit 08fdd05ff2

View file

@ -8,6 +8,7 @@
#:use-module (guix utils)
#:use-module (gnu packages compression)
#:use-module (gnu packages cpp)
#:use-module (gnu packages crypto)
#:use-module (gnu packages curl)
#:use-module (gnu packages databases)
#:use-module (gnu packages datastructures)
@ -25,13 +26,13 @@
(define-public nginx
(package
(name "nginx")
(version "1.25.3")
(version "1.27.1")
(source (origin
(method url-fetch)
(uri (string-append "https://nginx.org/download/nginx-" version ".tar.gz"))
(sha256 (base32 "11pdrpci4dbk87z8v00p3wjjn51gs9bshgrh53l3jy98r9svkib4"))))
(sha256 (base32 "1z5x0i0k1hmnxm7mb3dfn6qrz9am96my5ivinxl3gsp1dj5acyxx"))))
(build-system gnu-build-system)
(inputs (list libxml2 libxslt openssl pcre zlib gd gperftools))
(inputs (list libxml2 libxslt openssl pcre zlib gd gperftools libxcrypt))
(arguments
`(#:tests? #f
#:phases (modify-phases %standard-phases
@ -106,11 +107,11 @@
(package
(inherit nginx)
(name "nginx-ldap-auth-module")
(version "83c059b")
(version "241200e")
(source (origin
(method url-fetch)
(uri (list (string-append "https://github.com/kvspb/nginx-auth-ldap/archive/" version ".tar.gz")))
(sha256 (base32 "0r44dhsbw2ssg84vc5i68zdnhd0131nkbkbmxq7rpq9avddlw339"))))
(sha256 (base32 "0nyc1ip039lrlc6sv7gkil8s11n2d947jmh3w79qjh5wfc4npcyi"))))
(synopsis "LDAP Authentication module for nginx")
(description
"LDAP module for nginx which supports authentication against multiple LDAP servers.")
@ -143,11 +144,11 @@
(define-public modsecurity
(package
(name "modsecurity")
(version "3.0.11")
(version "3.0.13")
(source (origin
(method url-fetch)
(uri (list (string-append "https://github.com/SpiderLabs/ModSecurity/releases/download/v" version "/modsecurity-v" version ".tar.gz")))
(sha256 (base32 "14mn713xjk6m9g5am5jav47zkrp4w936ncdibswqa1ykg73lc3q7"))))
(sha256 (base32 "1wnkyhw36vsaqfyk8qch0qr34m5jhcg51wwxlhibhqd1ch8qid46"))))
(synopsis "modsecurity module for nginx")
(description "modsecurity module for nginx.")
(license license:asl2.0)