guix-commits
[Top][All Lists]
Advanced

[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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]