mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add go-github-com-emersion-go-webdav.
* gnu/packages/golang-xyz.scm (go-github-com-emersion-go-webdav): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: I7062a025e386727c45a8bffce8f059c736111f05
This commit is contained in:
parent
7ac644f996
commit
f73dbde862
1 changed files with 36 additions and 0 deletions
|
@ -1979,6 +1979,42 @@ (define-public go-github-com-emersion-go-vcard
|
|||
specified in @url{https://datatracker.ietf.org/doc/html/rfc6350, RFC 6350}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-emersion-go-webdav
|
||||
(package
|
||||
(name "go-github-com-emersion-go-webdav")
|
||||
(version "0.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/emersion/go-webdav")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1ay0x3c1frkj4z3j17s42yvf1hgmg8223qmsyr41yxwz88zsvjlj"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/emersion/go-webdav"
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? import-path #:allow-other-keys)
|
||||
(when tests?
|
||||
(with-directory-excursion (string-append "src/" import-path)
|
||||
(invoke "go" "test" "-v" "./..."))))))))
|
||||
(propagated-inputs
|
||||
(list go-github-com-emersion-go-ical
|
||||
go-github-com-emersion-go-vcard))
|
||||
(home-page "https://github.com/emersion/go-webdav")
|
||||
(synopsis "WebDAV, CalDAV and CardDAV implementations in Golang")
|
||||
(description
|
||||
"This package provides Golang modules implementing WebDAV
|
||||
@url{https://tools.ietf.org/html/rfc4918, RFC 4918}, CalDAV
|
||||
@url{https://tools.ietf.org/html/rfc4791, RFC 4791} and CardDAV
|
||||
@url{https://tools.ietf.org/html/rfc6352, RFC 6352} specifications.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-errata-ai-ini
|
||||
(package
|
||||
(name "go-github-com-errata-ai-ini")
|
||||
|
|
Loading…
Reference in a new issue