diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-06 21:15:41 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:40 +0000 |
commit | cc6a75bdc9599ed6115bce4f9510ce7bd7a7347d (patch) | |
tree | 3f36ed1510b9e5950059ec647b33a5cedfb4d5ee /gnu/packages/golang-crypto.scm | |
parent | 4669b9e621a8dfa276bb2e62dbecb20c38bd08c9 (diff) |
gnu: go-github-com-dgryski-go-metro: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-dgryski-go-metro): Move
from here ...
* gnu/packages/golang-crypto.scm: ... to here.
Change-Id: I1aa3193aa57ca3b8dd1dca49038dbc045f8bfc1a
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index d9cd2001ca..d9754f1bf3 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -741,6 +741,30 @@ It is implemented as a mechanical translation of the non-SSE4/non-AESNI hash functions from @url{https://github.com/google/farmhash,Google's FarmHash}.") (license license:expat))) +(define-public go-github-com-dgryski-go-metro + (package + (name "go-github-com-dgryski-go-metro") + (version "0.0.0-20250106013310-edb8663e5e33") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgryski/go-metro") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0had4wbhhghr3rbm5v4dcj73nlq49k1mpklqn9gkmzkkxfs8hf6z")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/dgryski/go-metro")) + (home-page "https://github.com/dgryski/go-metro") + (synopsis "Go translation of MetroHash") + (description + "This package provides a Go translation of the +@url{https://github.com/jandrewrogers/MetroHash, reference C++ code for +MetroHash}, a high quality, high performance hash algorithm.") + (license license:expat))) + (define-public go-github-com-dvsekhvalnov-jose2go (package (name "go-github-com-dvsekhvalnov-jose2go") |