diff options
author | Troy Figiel <troy@troyfigiel.com> | 2024-02-25 18:07:45 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-06 23:28:29 +0000 |
commit | 2477aea26d4c10495149dbbf4afb9c53de3dc5f5 (patch) | |
tree | 196f8f00b75405899e2332468e6c2b768674e794 | |
parent | 7991eedd0393e0a90892ef27cf1eb9ea28eb0754 (diff) | |
download | guix-2477aea26d4c10495149dbbf4afb9c53de3dc5f5.tar.gz guix-2477aea26d4c10495149dbbf4afb9c53de3dc5f5.zip |
gnu: go-github-com-vividcortex-ewma: Fix import-path.
* gnu/packages/golang.scm (go-github-com-vividcortex-ewma): Fix import-path.
[arguments]<#:import-path>: Use proper capitalization.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/golang.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 367ef73646..2eb63641f9 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9606,7 +9606,7 @@ parser.") (sha256 (base32 "0whx516l9nm4n41spagb605ry7kfnz1qha96mcshnfjlahhnnylq")))) (build-system go-build-system) - (arguments '(#:import-path "github.com/vividcortex/ewma")) + (arguments '(#:import-path "github.com/VividCortex/ewma")) (home-page "https://github.com/VividCortex/ewma") (synopsis "Exponentially Weighted Moving Average algorithms for Go") (description |