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:
Leo Famulari 2019-07-25 13:31:19 -04:00
parent 2da5275f81
commit 8c6be10aba
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 21 additions and 19 deletions

View File

@ -3586,18 +3586,20 @@ network protocol.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-pkg-errors (define-public go-github-com-pkg-errors
(let ((commit "27936f6d90f9c8e1145f11ed52ffffbfdb9e0af7")
(revision "0"))
(package (package
(name "go-github-com-pkg-errors") (name "go-github-com-pkg-errors")
(version "0.8.1") (version (git-version "0.8.1" revision commit))
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/pkg/errors.git") (url "https://github.com/pkg/errors.git")
(commit (string-append "v" version)))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1")))) "0yzmgi6g4ak4q8y7w6x0n5cbinlcn8yc3gwgzy4yck00qdn25d6y"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
`(#:import-path "github.com/pkg/errors")) `(#:import-path "github.com/pkg/errors"))
@ -3605,4 +3607,4 @@ network protocol.")
(description "This package provides @code{error}, which offers simple (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))))