[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/07: gnu: Add go-github-com-zeebo-blake3.
From: |
guix-commits |
Subject: |
06/07: gnu: Add go-github-com-zeebo-blake3. |
Date: |
Fri, 22 Nov 2024 11:01:25 -0500 (EST) |
avp pushed a commit to branch master
in repository guix.
commit 78ba54d9465d61eb372555dfe7607f18a6a2cbd4
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Thu Nov 14 23:05:08 2024 +0300
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>
---
gnu/packages/golang-crypto.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 168eb73ac4..7fdc502de6 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1727,6 +1727,35 @@ PKCS#8 PrivateKeyInfo format and EncryptedPrivateKeyInfo
format with
PKCS#5 (v2.0) algorithms.")
(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
(package
(name "go-github-com-zeebo-pcg")
- branch master updated (2fec407b27 -> 043f024627), guix-commits, 2024/11/22
- 02/07: gnu: Add go-github-com-libdns-libdns., guix-commits, 2024/11/22
- 03/07: gnu: Add go-github-com-mholt-acmez., guix-commits, 2024/11/22
- 04/07: gnu: Add go-github-com-zeebo-assert., guix-commits, 2024/11/22
- 06/07: gnu: Add go-github-com-zeebo-blake3.,
guix-commits <=
- 01/07: gnu: Add go-github-com-caddyserver-zerossl., guix-commits, 2024/11/22
- 05/07: gnu: Add go-github-com-zeebo-pcg., guix-commits, 2024/11/22
- 07/07: gnu: Add go-github-com-caddyserver-certmagic., guix-commits, 2024/11/22