[bug#57326,6/7] gnu: Add go-github-com-emersion-go-webdav.
Commit Message
* gnu/packages/golang.scm (go-github-com-emersion-go-webdav): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
Comments
On Mon Aug 22, 2022 at 12:44 AM BST, Cairn via Guix-patches via wrote:
> + (define-public go-github-com-emersion-go-webdav
> + (let ((commit "4a3cd0510f590534e8d1d69c70f736f6ca9762b3")
> + (revision "52"))
Change to "0", since it's the first version of this package in Guix.
> + (arguments
> + `(#:import-path "github.com/emersion/go-webdav"))
Arguments -> list-style :)
> + (description "This package lets you use distributed authoring and
> +versioning (DAV) standards in Go.")
Do description formatting here, too.
-- (
@@ -10011,3 +10011,27 @@ (define-public go-github-com-emersion-go-vcard
(synopsis "Go library for the vCard file format")
(description "This package lets you parse and format vCard in Go.")
(license license:expat))))
+
+ (define-public go-github-com-emersion-go-webdav
+ (let ((commit "4a3cd0510f590534e8d1d69c70f736f6ca9762b3")
+ (revision "52"))
+ (package
+ (name "go-github-com-emersion-go-webdav")
+ (version (git-version "0.3.1" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emersion/go-webdav")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1alnsfs7scd3k9z6s974mnfvxc8c2vw95m9sii40l2702q64n4cl"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/emersion/go-webdav"))
+ (home-page "https://github.com/emersion/go-webdav")
+ (synopsis "Go library for WebDAV, CalDAV and CardDAV")
+ (description "This package lets you use distributed authoring and
+versioning (DAV) standards in Go.")
+ (license license:expat))))