summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-crypto.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <[email protected]>2024-12-29 16:25:53 +0000
committerSharlatan Hellseher <[email protected]>2025-01-21 23:42:36 +0000
commit871cb6c803dbd8f2dcea71b4f8fc9df192eef358 (patch)
tree81daf57766131297274d2328c7598f52372785e0 /gnu/packages/golang-crypto.scm
parentd62a69922a3ad6d573842779e004eaf9b537de99 (diff)
gnu: Add go-github-com-shogo82148-go-shuffle.
* gnu/packages/golang-crypto.scm (go-github-com-shogo82148-go-shuffle): New variable. Change-Id: Ie5bfed1f056776a7b6e8e64103dd6844440111cd
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r--gnu/packages/golang-crypto.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 2310aac0c3..49733cf3c4 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1721,6 +1721,30 @@ seed} Go's random number generator (if possible).")
tunnel proxy protocol.")
(license license:asl2.0)))
+(define-public go-github-com-shogo82148-go-shuffle
+ (package
+ (name "go-github-com-shogo82148-go-shuffle")
+ (version "1.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/shogo82148/go-shuffle")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0z5n5jp57b68pq70wkrmw9z3vibjnq7b7f6i62pjhh1a83kknfg1"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/shogo82148/go-shuffle"))
+ (home-page "https://github.com/shogo82148/go-shuffle")
+ (synopsis "Shuffling slices and user-defined collections")
+ (description
+ "Package shuffle provides primitives for shuffling slices and
+user-defined collections.")
+ (license license:expat)))
+
(define-public go-github-com-skeema-knownhosts
(package
(name "go-github-com-skeema-knownhosts")