diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-23 11:22:30 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:42:18 +0000 |
commit | 52a3ea8f583c044faf58d254565c34a6a3e26224 (patch) | |
tree | c3d6508a584b6958915727ed7704248f4e05f3e0 /gnu/packages/golang-crypto.scm | |
parent | 8f35f70540c1b392f02a2270eb6a5e0ce00d3223 (diff) |
gnu: Add go-github-com-zeebo-blake3-avo.
* gnu/packages/golang-crypto.scm (go-github-com-zeebo-blake3-avo): New variable.
Change-Id: Ice03c8c9680bb368f5b818d4bfc0424744be25eb
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index fb1faa8933..a5cf97667f 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -1783,6 +1783,33 @@ PKCS#5 (v2.0) algorithms.") and SSE4.1 acceleration.") (license license:cc0))) +(define-public go-github-com-zeebo-blake3-avo + (package + (name "go-github-com-zeebo-blake3-avo") + (version "0.0.0-20240814144702-1a8215cf69be") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zeebo/blake3") + (commit (go-version->git-ref version + #:subdir "avo")))) + (file-name (git-file-name name version)) + (sha256 + (base32 "117p973ccgalaqg7byj0qcd1xapysplql9np1sr9jkca500khcgf")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/zeebo/blake3/avo" + #:unpack-path "github.com/zeebo/blake3")) + (propagated-inputs (list go-github-com-mmcloughlin-avo)) + (home-page "https://github.com/zeebo/blake3") + (synopsis "BLAKE3 Avo integration") + (description + "This package provides a @url{https://github.com/mmcloughlin/avo, avo} +vectorized version of BLAKE3 implementation in Golang.") + (license license:cc0))) + (define-public go-github-com-zeebo-pcg (package (name "go-github-com-zeebo-pcg") |