mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 10:09:15 -05:00
gnu: Add go-github-com-leodido-go-urn.
* gnu/packages/golang.scm (go-github-com-leodido-go-urn): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
b7f47d243b
commit
6e95e7d25f
1 changed files with 25 additions and 0 deletions
|
@ -487,6 +487,31 @@ (define-public go-github-com-aki237-nscjar
|
|||
(home-page "https://github.com/aki237/nscjar")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-leodido-go-urn
|
||||
(package
|
||||
(name "go-github-com-leodido-go-urn")
|
||||
(version "1.2.0")
|
||||
(home-page "https://github.com/leodido/go-urn")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1d4g1vkhc1180l1n7q48vl84b27c7cziywml78cyijbcdz2f8vim"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/leodido/go-urn"))
|
||||
(native-inputs
|
||||
`(("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)))
|
||||
(synopsis "Parser for uniform resource names as seen on RFC 2141")
|
||||
(description
|
||||
"This package implements a parser for uniform resource names (URN) as
|
||||
specified by @uref{https://tools.ietf.org/html/rfc2141, IETF RFC 2141}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github.com-jessevdk-go-flags
|
||||
(package
|
||||
(name "go-github.com-jessevdk-go-flags")
|
||||
|
|
Loading…
Reference in a new issue