mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add go-github-com-rcrowley-go-metrics.
* gnu/packages/syncthing.scm (go-github-com-rcrowley-go-metrics): New variable.
This commit is contained in:
parent
6bc1eb1159
commit
1a4795f9d0
1 changed files with 26 additions and 0 deletions
|
@ -489,6 +489,32 @@ (define-public go-github-com-stathat-go
|
|||
(home-page "https://github.com/stathat/go")
|
||||
(license expat))))
|
||||
|
||||
(define-public go-github-com-rcrowley-go-metrics
|
||||
(let ((commit "1f30fe9094a513ce4c700b9a54458bbb0c96996c")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "go-github-com-rcrowley-go-metrics")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rcrowley/go-metrics")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1hvbiaq4b6dqgjz6jkkxglfh9gf71zin6qsg508sh0r0ixfavrzj"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/rcrowley/go-metrics"))
|
||||
(propagated-inputs
|
||||
`(("go-github-com-stathat-go" ,go-github-com-stathat-go)))
|
||||
(synopsis "Go port of Coda Hale's Metrics library")
|
||||
(description "This package provides a Go implementation of Coda Hale's
|
||||
Metrics library.")
|
||||
(home-page "https://github.com/rcrowley/go-metrics")
|
||||
(license bsd-2))))
|
||||
|
||||
(define-public go-golang-org-x-sys-unix
|
||||
(let ((commit "f3918c30c5c2cb527c0b071a27c35120a6c0719a")
|
||||
(revision "0"))
|
||||
|
|
Loading…
Reference in a new issue