gnu: go-github-com-pkg-errors: Update to 0.8.1-0.27936f6.
* gnu/packages/golang.scm (go-github-com-pkg-errors): Update to 0.8.1-0.27936f6.
This commit is contained in:
parent
2da5275f81
commit
8c6be10aba
|
@ -3586,23 +3586,25 @@ network protocol.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-pkg-errors
|
(define-public go-github-com-pkg-errors
|
||||||
(package
|
(let ((commit "27936f6d90f9c8e1145f11ed52ffffbfdb9e0af7")
|
||||||
(name "go-github-com-pkg-errors")
|
(revision "0"))
|
||||||
(version "0.8.1")
|
(package
|
||||||
(source (origin
|
(name "go-github-com-pkg-errors")
|
||||||
(method git-fetch)
|
(version (git-version "0.8.1" revision commit))
|
||||||
(uri (git-reference
|
(source (origin
|
||||||
(url "https://github.com/pkg/errors.git")
|
(method git-fetch)
|
||||||
(commit (string-append "v" version))))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/pkg/errors.git")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1"))))
|
(sha256
|
||||||
(build-system go-build-system)
|
(base32
|
||||||
(arguments
|
"0yzmgi6g4ak4q8y7w6x0n5cbinlcn8yc3gwgzy4yck00qdn25d6y"))))
|
||||||
`(#:import-path "github.com/pkg/errors"))
|
(build-system go-build-system)
|
||||||
(synopsis "Go error handling primitives")
|
(arguments
|
||||||
(description "This package provides @code{error}, which offers simple
|
`(#:import-path "github.com/pkg/errors"))
|
||||||
|
(synopsis "Go error handling primitives")
|
||||||
|
(description "This package provides @code{error}, which offers simple
|
||||||
error handling primitives in Go.")
|
error handling primitives in Go.")
|
||||||
(home-page "https://github.com/pkg/errors")
|
(home-page "https://github.com/pkg/errors")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2))))
|
||||||
|
|
Loading…
Reference in New Issue