[bug#57326,5/7] gnu: Add go-github-com-emersion-go-vcard.
Commit Message
* gnu/packages/golang.scm (go-github-com-emersion-go-vcard): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
Comments
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.
-- (
@@ -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))))