guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit ddef3514487d6f3452c699a013d78cb459833c70
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 11 10:35:19 2026 +0000

    gnu: Add go-github-com-jmcvetta-randutil.
    
    * gnu/packages/golang-xyz.scm (go-github-com-jmcvetta-randutil): New 
variable.
    
    Change-Id: I84696662526e86b7aa8ec781c7bddf15a9426b69
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a2c12e2131..77887baea2 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -13030,6 +13030,33 @@ for Go.  The project is meant as alternative to
 reflection.")
     (license license:expat)))
 
+(define-public go-github-com-jmcvetta-randutil
+  (package
+    (name "go-github-com-jmcvetta-randutil")
+    (version "0.0.0-20150817122601-2bb1b664bcff")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/jmcvetta/randutil";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0kjj4c8vnzqhld0aljbfczmsp49k7vqhfn0n9768hkvyg885jx74"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/jmcvetta/randutil"
+      #:test-flags #~(list "-vet=off")))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (home-page "https://github.com/jmcvetta/randutil";)
+    (synopsis "Random number/string utilities for Golang")
+    (description
+     "This package provides various convenience functions for dealing with
+random numbers and strings.")
+    (license license:gpl3)))
+
 (define-public go-github-com-jmhodges-levigo
   (package
     (name "go-github-com-jmhodges-levigo")

Reply via email to