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
This commit is contained in:
Sharlatan Hellseher 2025-01-06 21:15:41 +00:00
parent 4669b9e621
commit cc6a75bdc9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 24 deletions

View file

@ -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")