[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#68605] [PATCH 08/38] gnu: go-github-com-aead-chacha20: Move to (gnu
|
From: |
Sharlatan Hellseher |
|
Subject: |
[bug#68605] [PATCH 08/38] gnu: go-github-com-aead-chacha20: Move to (gnu packages golang-crypto). |
|
Date: |
Sat, 20 Jan 2024 09:58:00 +0000 |
* gnu/packages/golang.scm (go-github-com-aead-chacha20): Move from here ...
* gnu/packages/golang-crypto.scm: ... to here.
Change-Id: I97254ae17ba12327649d26f154396c42ed07b716
---
gnu/packages/golang-crypto.scm | 27 +++++++++++++++++++++++++++
gnu/packages/golang.scm | 28 ----------------------------
2 files changed, 27 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index b2c9c98b44..4462eb6141 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -38,6 +38,33 @@ (define-module (gnu packages golang-crypto)
;;;
;;; Code:
+(define-public go-github-com-aead-chacha20
+ (let ((commit "8b13a72661dae6e9e5dea04f344f0dc95ea29547")
+ (revision "0"))
+ (package
+ (name "go-github-com-aead-chacha20")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/aead/chacha20")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0gbmgq5kbqmbyrsav57ql4jzbvqvp1q7yvcd5fl3wf5g94iyv56r"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/aead/chacha20"))
+ (propagated-inputs
+ (list go-golang-org-x-sys))
+ (home-page "https://github.com/aead/chacha20")
+ (synopsis "ChaCha20 and XChaCha20 stream ciphers")
+ (description "ChaCha is a stream cipher family created by Daniel
+Bernstein. The most common ChaCha variant is ChaCha20 (20 rounds). ChaCha20
+is standardized in RFC 7539.")
+ (license license:expat))))
+
(define-public go-github-com-libp2p-go-libp2p-crypto
(let ((commit "7240b40a3ddc47c4d17c15baabcbe45e5219171b")
(revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3abb4a2918..358edfed63 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1832,34 +1832,6 @@ (define-public go-github-com-savsgio-gotils
"Golang utilities to make your life easier with zero allocations.")
(license license:asl2.0))))
-(define-public go-github-com-aead-chacha20
- (let ((commit "8b13a72661dae6e9e5dea04f344f0dc95ea29547")
- (revision "0"))
- (package
- (name "go-github-com-aead-chacha20")
- (version (git-version "0.0.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/aead/chacha20")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0gbmgq5kbqmbyrsav57ql4jzbvqvp1q7yvcd5fl3wf5g94iyv56r"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "github.com/aead/chacha20"))
- (propagated-inputs
- (list go-golang-org-x-sys))
- (home-page "https://github.com/aead/chacha20")
- (synopsis "ChaCha20 and XChaCha20 stream ciphers")
- (description "ChaCha is a stream cipher family created by Daniel
Bernstein.
-The most common ChaCha variant is ChaCha20 (20 rounds). ChaCha20 is
-standardized in RFC 7539.")
- (license license:expat))))
-
(define-public go-github-com-mufti1-interconv
(let ((commit "d7c72925c6568d60d361757bb9f2d252dcca745c")
(revision "0"))
--
2.41.0
- [bug#68605] [PATCH 00/38] Split (gnu packages golang) part III, Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 01/38] gnu: Add (gnu packages golang-crypto) module., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 02/38] gnu: go-github-com-pquerna-cachecontrol: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 04/38] gnu: go-github-com-riobard-go-bloom: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 05/38] gnu: go-github-com-libp2p-go-libp2p-crypto: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 03/38] gnu: go-github-com-multiformats-go-multihash: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 06/38] gnu: go-github-com-shadowsocks-go-shadowsocks2: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 07/38] gnu: go-github-com-libp2p-go-libp2p-peer: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 08/38] gnu: go-github-com-aead-chacha20: Move to (gnu packages golang-crypto).,
Sharlatan Hellseher <=
- [bug#68605] [PATCH 09/38] gnu: go-github-com-marten-seemann-chacha20: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 10/38] gnu: go-github-com-refraction-networking-utls: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 11/38] gnu: go-filippo-io-edwards25519: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 12/38] gnu: go-gitlab-com-yawning-edwards25519-extra: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 13/38] gnu: go-github-com-marten-seemann-qtls: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 17/38] gnu: go-github-com-aperturerobotics-jacobsa-crypto: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 18/38] gnu: go-github-com-rfjakob-eme: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 15/38] gnu: go-github-com-quic-go-qtls-go1-20: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 24/38] gnu: go-github-com-minio-sha256-simd: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20
- [bug#68605] [PATCH 30/38] gnu: go-github-com-99designs-go-keyring: Move to (gnu packages golang-crypto)., Sharlatan Hellseher, 2024/01/20