mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-05-01 22:55:36 +02:00
adding caddy-dirty
This commit is contained in:
parent
08fdd05ff2
commit
a22ac81449
2 changed files with 64 additions and 0 deletions
24
glicid/packages/caddy.scm
Normal file
24
glicid/packages/caddy.scm
Normal file
|
@ -0,0 +1,24 @@
|
|||
(define-module (glicid packages caddy)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix packages)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix build-system copy)
|
||||
)
|
||||
|
||||
|
||||
(define-public caddy-dirty
|
||||
(package
|
||||
(name "caddy-dirty")
|
||||
(version "2.8.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/caddyserver/caddy/releases/download/v" version "/caddy_" version "_freebsd_amd64.tar.gz"))
|
||||
(sha256 (base32 "0wqppxia2zpzh7n8x58wzrvr3myznmyq890h90ddndym30qdj83w"))))
|
||||
(build-system copy-build-system)
|
||||
(arguments
|
||||
`(#:install-plan `(("caddy" "/sbin/"))))
|
||||
(synopsis "Caddy is an extensible server platform that uses TLS by default. Dirty Version.")
|
||||
(description "Caddy is an extensible server platform that uses TLS by default. Dirty Version")
|
||||
(home-page "https://github.com/caddyserver/caddy")
|
||||
(license license:expat)))
|
Loading…
Add table
Add a link
Reference in a new issue