bumping caddy to 2.9.1

This commit is contained in:
Jean-François GUILLAUME 2025-02-10 10:04:22 +01:00
parent a103791c30
commit 946a2e03bd
GPG key ID: 38751DAE145EFB5A

View file

@ -15,53 +15,58 @@
) )
(define %caddy-version "2.9.1")
(define %caddy-synopsis "Caddy is an extensible server platform that uses TLS by default. Dirty Version.")
(define %caddy-description "Caddy is an extensible server platform that uses TLS by default. Dirty Version")
(define %caddy-homepage "https://github.com/caddyserver/caddy")
(define %glicid-caddy-homepage "https://forgejo.glicid.fr/GLiCID/caddy-for-guix")
(define-public caddy-dirty (define-public caddy-dirty
(package (package
(name "caddy-dirty") (name "caddy-dirty")
(version "2.8.4") (version %caddy-version)
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/caddyserver/caddy/releases/download/v" version "/caddy_" version "_linux_amd64.tar.gz")) (uri (string-append "https://github.com/caddyserver/caddy/releases/download/v" version "/caddy_" version "_linux_amd64.tar.gz"))
(sha256 (base32 "1j286xfxcrzvgn4k02nnq7n45wdsyz5c0phw6y7gi30kain31s57")))) (sha256 (base32 "166qbnpk8mb07sxbjkq9xi2j992jphmslz53wryrimp0bjxyshh5"))))
(build-system copy-build-system) (build-system copy-build-system)
(arguments (arguments
`(#:install-plan `(("caddy" "/sbin/")))) `(#:install-plan `(("caddy" "/sbin/"))))
(synopsis "Caddy is an extensible server platform that uses TLS by default. Dirty Version.") (synopsis %caddy-synopsis)
(description "Caddy is an extensible server platform that uses TLS by default. Dirty Version") (description %caddy-description)
(home-page "https://github.com/caddyserver/caddy") (home-page %caddy-homepage)
(license license:expat))) (license license:expat)))
(define-public caddy-dirty-with-replace (define-public caddy-dirty-with-replace
(package (package
(name "caddy-dirty-with-replace") (name "caddy-dirty-with-replace")
(version "2.8.4") (version %caddy-version)
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://forgejo.glicid.fr/api/packages/GLiCID/generic/caddy-for-guix/v" version "/caddy-" version "-replaceresponse.tar.gz")) (uri (string-append "https://forgejo.glicid.fr/api/packages/GLiCID/generic/caddy-for-guix/v" version "/caddy-" version "-replaceresponse.tar.gz"))
(sha256 (base32 "16rbxld5pg7w1a7j22rfkaihs3867ign4qbml5a6psnn4v8blcxh")))) (sha256 (base32 "0yvbzq0bmfgk30idv10kx32w98h4i3gpj46yavsfmbd0wjp7pl78"))))
(build-system copy-build-system) (build-system copy-build-system)
(arguments (arguments
`(#:install-plan `(("caddy" "/sbin/")))) `(#:install-plan `(("caddy" "/sbin/"))))
(synopsis "Caddy is an extensible server platform that uses TLS by default. Dirty Version.") (synopsis %caddy-synopsis)
(description "Caddy is an extensible server platform that uses TLS by default. Dirty Version") (description (string-append %caddy-description "With custom extensions. See homepage for more information."))
(home-page "https://github.com/caddyserver/caddy") (home-page %glicid-caddy-homepage)
(license license:expat))) (license license:expat)))
(define-public caddy-dirty-with-extensions (define-public caddy-dirty-with-extensions
(package (package
(name "caddy-dirty-with-extensions") (name "caddy-dirty-with-extensions")
(version "2.8.4") (version %caddy-version)
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://forgejo.glicid.fr/api/packages/GLiCID/generic/caddy-for-guix/v" version "/caddy-" version "-full.tar.gz")) (uri (string-append "https://forgejo.glicid.fr/api/packages/GLiCID/generic/caddy-for-guix/v" version "/caddy-" version "-full.tar.gz"))
(sha256 (base32 "0y4rsg94ngp85ma02axfdwfj72h1bwac3hf4kykym2dzyydgcvf7")))) (sha256 (base32 "06l54jqphm3dhyy73618wzihghw1j88kj2yyhkpvxcvb43gir10p"))))
(build-system copy-build-system) (build-system copy-build-system)
(arguments (arguments
`(#:install-plan `(("caddy" "/sbin/")))) `(#:install-plan `(("caddy" "/sbin/"))))
(synopsis "Caddy is an extensible server platform that uses TLS by default. Dirty Version.") (synopsis %caddy-synopsis)
(description "Caddy is an extensible server platform that uses TLS by default. Dirty Version") (description (string-append %caddy-description "With custom extensions. See homepage for more information."))
(home-page "https://github.com/caddyserver/caddy") (home-page %glicid-caddy-homepage)
(license license:expat))) (license license:expat)))
(define-public go-github-com-akavel-rsrc (define-public go-github-com-akavel-rsrc
@ -138,5 +143,3 @@ Information and an optional icon.")
"This command line tool and associated Go package makes it easy to make custom "This command line tool and associated Go package makes it easy to make custom
builds of the @@url{https://github.com/caddyserver/caddy,Caddy Web Server}.") builds of the @@url{https://github.com/caddyserver/caddy,Caddy Web Server}.")
(license license:asl2.0))) (license license:asl2.0)))
caddy-dirty-with-extensions