1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add go-github-com-dgryski-go-rendezvous.

* gnu/packages/golang-crypto.scm (go-github-com-dgryski-go-rendezvous): New variable.

Change-Id: I863e2044ab365a80763226f8b8e8ea88719fe073
This commit is contained in:
Sharlatan Hellseher 2025-01-06 21:26:50 +00:00
parent 598c55929f
commit 48637ed9f5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -790,6 +790,30 @@ MetroHash}, a high quality, high performance hash algorithm.")
"This package implements a hash/displace minimal perfect hash function.") "This package implements a hash/displace minimal perfect hash function.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-dgryski-go-rendezvous
(package
(name "go-github-com-dgryski-go-rendezvous")
(version "0.0.0-20200823014737-9f7001d12a5f")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dgryski/go-rendezvous")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0hhdbsm5k19kh1fyxs4aibza9jylils4p3555lr8xalhj2iz3zlz"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/dgryski/go-rendezvous"))
(home-page "https://github.com/dgryski/go-rendezvous")
(synopsis "Hashing functions for Golang")
;; Project provides no README.
(description
"This package provides a hashing function.")
(license license:expat)))
(define-public go-github-com-dvsekhvalnov-jose2go (define-public go-github-com-dvsekhvalnov-jose2go
(package (package
(name "go-github-com-dvsekhvalnov-jose2go") (name "go-github-com-dvsekhvalnov-jose2go")