mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add go-github-com-vividcortex-ewma.
* gnu/packages/golang.scm (go-github-com-vividcortex-ewma): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
5ca0042116
commit
b3a9d079b8
1 changed files with 22 additions and 0 deletions
|
@ -8839,3 +8839,25 @@ (define-public go-gopkg-in-djherbis-times-v1
|
|||
(description
|
||||
"Provides a platform-independent way to get atime, mtime, ctime and btime for files.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-vividcortex-ewma
|
||||
(package
|
||||
(name "go-github-com-vividcortex-ewma")
|
||||
(version "1.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/VividCortex/ewma")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq"))))
|
||||
(build-system go-build-system)
|
||||
(arguments '(#:import-path "github.com/VividCortex/ewma"))
|
||||
(home-page "https://github.com/VividCortex/ewma")
|
||||
(synopsis "Exponentially Weighted Moving Average algorithms for Go")
|
||||
(description
|
||||
"This package implements algorithms for exponentially weighted moving
|
||||
averages.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue