mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 18:26:43 +01:00
gnu: Add go-github-com-oklog-run.
* gnu/packages/golang-xyz.scm (go-github-com-oklog-run): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: If0a0f1cb274ed10e991001079ff152dbe31c8ce4
This commit is contained in:
parent
66abf5f2f0
commit
95cf183452
1 changed files with 26 additions and 0 deletions
|
@ -5049,6 +5049,32 @@ (define-public go-github-com-nsqio-go-nsq
|
||||||
NSQ protocol @url{https://nsq.io/}.")
|
NSQ protocol @url{https://nsq.io/}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-oklog-run
|
||||||
|
(package
|
||||||
|
(name "go-github-com-oklog-run")
|
||||||
|
(version "1.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/oklog/run")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0r55p3kgdkgw55i33lqvvvl60mjp92mhd1170m980sw98z9150jk"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/oklog/run"))
|
||||||
|
(home-page "https://github.com/oklog/run")
|
||||||
|
(synopsis "Universal mechanism to manage goroutine lifecycles")
|
||||||
|
(description
|
||||||
|
"@code{run.Group} is a universal mechanism to manage goroutine
|
||||||
|
lifecycles, written to manage component lifecycles in @code{func main} for OK
|
||||||
|
Log. It's useful in any circumstance where you need to orchestrate multiple
|
||||||
|
goroutines as a unit whole.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-op-go-logging
|
(define-public go-github-com-op-go-logging
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-op-go-logging")
|
(name "go-github-com-op-go-logging")
|
||||||
|
|
Loading…
Reference in a new issue