Message ID | 20220821234352.16268-1-cairn@pm.me |
---|---|
State | New |
Headers | show |
Series | gnu: Add hydroxide. | expand |
Context | Check | Description |
---|---|---|
cbaines/comparison | success | View comparision |
cbaines/git-branch | success | View Git branch |
cbaines/applying patch | fail | |
cbaines/issue | success | View issue |
cbaines/comparison | success | View comparision |
cbaines/git-branch | success | View Git branch |
cbaines/applying patch | success | View Laminar job |
cbaines/issue | success | View issue |
On Mon Aug 22, 2022 at 12:43 AM BST, Cairn via Guix-patches via wrote: > + (arguments > + `(#:import-path "github.com/emersion/go-vcard")) Again, list style. > + (inputs (list)) No need for this field. > + (home-page "https://github.com/emersion/go-vcard") > + (synopsis "Go library for the vCard file format") > + (description "This package lets you parse and format vCard in Go.") Description formatting here, too. Also, IMO "parse and format vCard" sounds a little weird. -- (
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 9bad453402..3501dfe412 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9987,3 +9987,27 @@ (define-public go-github-com-emersion-go-mbox (description "This package parses the mbox file format into messages and formats messages into mbox files.") (license license:expat))) + +(define-public go-github-com-emersion-go-vcard + (let ((commit "d4056df0ec4a571d6d42a8a116f6ee8a8b40d569") + (revision "0")) + (package + (name "go-github-com-emersion-go-vcard") + (version (git-version "0.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emersion/go-vcard") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "04yjzg0fgc6ldf603mkh99k1p1fp30ni0j1141abi1jv04sdk919")))) + (build-system go-build-system) + (arguments + `(#:import-path "github.com/emersion/go-vcard")) + (inputs (list)) + (home-page "https://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))))