From 871cb6c803dbd8f2dcea71b4f8fc9df192eef358 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 29 Dec 2024 16:25:53 +0000 Subject: [PATCH] gnu: Add go-github-com-shogo82148-go-shuffle. * gnu/packages/golang-crypto.scm (go-github-com-shogo82148-go-shuffle): New variable. Change-Id: Ie5bfed1f056776a7b6e8e64103dd6844440111cd --- gnu/packages/golang-crypto.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 2310aac0c3b..49733cf3c4d 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")