[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
32/32: gnu: go-github-com-dchest-siphash: Move to golang-crypto.
From: |
guix-commits |
Subject: |
32/32: gnu: go-github-com-dchest-siphash: Move to golang-crypto. |
Date: |
Sun, 29 Dec 2024 17:38:05 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit 288abf3fbf2df489049689659fe6678c431a80fc
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Dec 29 22:35:45 2024 +0000
gnu: go-github-com-dchest-siphash: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-dchest-siphash): Move from here ...
* gnu/packages/golang-crypto.scm: ... to here.
Change-Id: I88a952103cf74c8a8482f243be0af6ee24cb85da
---
gnu/packages/golang-crypto.scm | 23 +++++++++++++++++++++++
gnu/packages/golang.scm | 23 -----------------------
2 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 914ff0cc38..517c3946fc 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -599,6 +599,29 @@ one-time authenticator as specified in
@end itemize")
(license license:expat)))
+(define-public go-github-com-dchest-siphash
+ (package
+ (name "go-github-com-dchest-siphash")
+ (version "1.2.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dchest/siphash")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1d6vbg5i5r6pgfk3vh93a20jdj67lgr17dk2iml7fffw67i25a2c"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/dchest/siphash"))
+ (home-page "https://github.com/dchest/siphash")
+ (synopsis "Go library for pseudorandom functions")
+ (description
+ "SipHash is a family of pseudorandom functions (PRFs) optimized
+for speed on short messages.")
+ (license license:cc0)))
+
(define-public go-github-com-decred-dcrd-crypto-blake256
(package
(name "go-github-com-decred-dcrd-crypto-blake256")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 41f2d663a8..066bc81f43 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1988,29 +1988,6 @@ management interface. It can be used to monitor and
control an OpenVPN process
running with its management port enabled.")
(license license:expat))))
-(define-public go-github-com-dchest-siphash
- (package
- (name "go-github-com-dchest-siphash")
- (version "1.2.3")
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/dchest/siphash")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1d6vbg5i5r6pgfk3vh93a20jdj67lgr17dk2iml7fffw67i25a2c"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "github.com/dchest/siphash"))
- (home-page "https://github.com/dchest/siphash")
- (synopsis "Go library for pseudorandom functions")
- (description "SipHash is a family of pseudorandom functions (PRFs)
optimized
-for speed on short messages.")
- (license license:cc0)))
-
(define-public go-github-com-rakyll-statik
(package
(name "go-github-com-rakyll-statik")
- 30/32: gnu: go-github-com-dpotapov-go-spnego: Move to golang-web., (continued)
- 30/32: gnu: go-github-com-dpotapov-go-spnego: Move to golang-web., guix-commits, 2024/12/29
- 21/32: gnu: go-github-com-pkg-diff: Update to 0.0.0-20241224192749-4e6772a4315c., guix-commits, 2024/12/29
- 03/32: gnu: Add go-github-com-hashicorp-go-sockaddr., guix-commits, 2024/12/29
- 20/32: gnu: go-github-com-delthas-go-localeinfo: Move to golang-xyz., guix-commits, 2024/12/29
- 19/32: gnu: go-github-com-delthas-go-localeinfo: Update to 0.0.0-20240813094314-e5413e186769., guix-commits, 2024/12/29
- 23/32: gnu: go-github-com-juju-ansiterm: Update to 1.0.0., guix-commits, 2024/12/29
- 25/32: gnu: go-github-com-savsgio-gotils: Simplify., guix-commits, 2024/12/29
- 29/32: gnu: go-github-com-dpotapov-go-spnego: Fix synopsis and description., guix-commits, 2024/12/29
- 28/32: gnu: go-github-com-dpotapov-go-spnego: Update to 0.0.0-20220426193508-b7f82e4507db., guix-commits, 2024/12/29
- 31/32: gnu: go-github-com-dchest-siphash: Update to 1.2.3., guix-commits, 2024/12/29
- 32/32: gnu: go-github-com-dchest-siphash: Move to golang-crypto.,
guix-commits <=