mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-zeebo-blake3.
* gnu/packages/golang-crypto.scm (go-github-com-zeebo-blake3): New variable. Change-Id: I23bc863fb1731b520aeca8e9088a98c6fcfcf62d Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
f0adac0ecf
commit
78ba54d946
1 changed files with 29 additions and 0 deletions
|
@ -1727,6 +1727,35 @@ PKCS#8 PrivateKeyInfo format and EncryptedPrivateKeyInfo format with
|
||||||
PKCS#5 (v2.0) algorithms.")
|
PKCS#5 (v2.0) algorithms.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-zeebo-blake3
|
||||||
|
(package
|
||||||
|
(name "go-github-com-zeebo-blake3")
|
||||||
|
(version "0.2.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/zeebo/blake3")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "117p973ccgalaqg7byj0qcd1xapysplql9np1sr9jkca500khcgf"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/zeebo/blake3"))
|
||||||
|
(native-inputs (list go-github-com-zeebo-assert))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-klauspost-cpuid-v2
|
||||||
|
go-github-com-zeebo-pcg))
|
||||||
|
(home-page "https://github.com/zeebo/blake3")
|
||||||
|
(synopsis "Pure Go implementation of BLAKE3")
|
||||||
|
(description
|
||||||
|
"@code{blake3} is an implementation of
|
||||||
|
@url{https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE3, BLAKE3} with AVX2
|
||||||
|
and SSE4.1 acceleration.")
|
||||||
|
(license license:cc0)))
|
||||||
|
|
||||||
(define-public go-github-com-zeebo-pcg
|
(define-public go-github-com-zeebo-pcg
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-zeebo-pcg")
|
(name "go-github-com-zeebo-pcg")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue