diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-07 16:45:52 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-09 21:05:18 +0100 |
commit | e8605fab74d249eb4d649c0209201d2b0ba41067 (patch) | |
tree | 87ee0ecdf6f78094d072dfd27ca70e7d13244f4e | |
parent | 2665514929ba9890d0452653a9ba8261d9f5208e (diff) | |
download | guix-e8605fab74d249eb4d649c0209201d2b0ba41067.tar guix-e8605fab74d249eb4d649c0209201d2b0ba41067.tar.gz |
gnu: Add go-github-com-dgryski-go-farm.
* gnu/packages/golang-crypto.scm (go-github-com-dgryski-go-farm): New variable.
Change-Id: I6e068af38b15451668287df08251da23609f47bd
-rw-r--r-- | gnu/packages/golang-crypto.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index d098fcf84d..35c84ea573 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -594,6 +594,32 @@ one-time authenticator as specified in and AVX acceleration and zero allocations.") (license license:isc))) +(define-public go-github-com-dgryski-go-farm + (package + (name "go-github-com-dgryski-go-farm") + (version "0.0.0-20200201041132-a6ae2369ad13") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dgryski/go-farm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/dgryski/go-farm")) + (home-page "https://github.com/dgryski/go-farm") + (synopsis "Farmhash implementation in Golang") + (description + "FarmHash provides hash functions for strings and other data. The +functions mix the input bits thoroughly but are not suitable for cryptography. +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-dvsekhvalnov-jose2go (package (name "go-github-com-dvsekhvalnov-jose2go") |