mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add go-gopkg-in-warnings.
* gnu/packages/golang.scm (go-gopkg-in-warnings): New variable.
This commit is contained in:
parent
b554842620
commit
f18df4f9de
1 changed files with 22 additions and 0 deletions
|
@ -5090,3 +5090,25 @@ (define-public go-github-com-emirpasic-gods-utils
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "github.com/emirpasic/gods/utils"
|
`(#:import-path "github.com/emirpasic/gods/utils"
|
||||||
#:unpack-path "github.com/emirpasic/gods"))))
|
#:unpack-path "github.com/emirpasic/gods"))))
|
||||||
|
|
||||||
|
(define-public go-gopkg-in-warnings
|
||||||
|
(package
|
||||||
|
(name "go-gopkg-in-warnings")
|
||||||
|
(version "0.1.2")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/go-warnings/warnings")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "gopkg.in/warnings.v0"))
|
||||||
|
(home-page "https://gopkg.in/warnings.v0")
|
||||||
|
(synopsis "Error handling with non-fatal errors")
|
||||||
|
(description "Package warnings implements error handling with non-fatal
|
||||||
|
errors (warnings).")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
Loading…
Reference in a new issue