Archived
1
0
Fork 0

gnu: Add go-github-com-jbenet-go-context-io.

* gnu/packages/golang.scm (go-github-com-jbenet-go-context-io): New variable.
This commit is contained in:
Oleg Pykhalov 2020-08-09 11:08:46 +03:00
parent c99318761c
commit c562048ce8
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -5162,3 +5162,27 @@ library, allowing to develop applications without dependency on the underlying
storage. Makes it virtually free to implement mocks and testing over storage. Makes it virtually free to implement mocks and testing over
filesystem operations.") filesystem operations.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public go-github-com-jbenet-go-context-io
(let ((commit "d14ea06fba99483203c19d92cfcd13ebe73135f4")
(revision "1"))
(package
(name "go-github-com-jbenet-go-context-io")
(version (git-version "0.0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jbenet/go-context")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0q91f5549n81w3z5927n4a1mdh220bdmgl42zi3h992dcc4ls0sl"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/jbenet/go-context/io"))
(home-page "https://github.com/jbenet/go-context/")
(synopsis "@code{jbenet's} context extensions")
(description "This package provides @code{jbenet's} context
extensions.")
(license license:expat))))