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

commit add5d244892099be81676df19a4716c09aad72d3
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Sep 14 23:23:14 2024 +0100

    gnu: Add go-github-com-muesli-combinator.
    
    * gnu/packages/golang-xyz.scm (go-github-com-muesli-combinator): New 
variable.
    
    Change-Id: I24e9c6c752e677d6c3f4f97f461bbd66d7b675b1
---
 gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 41efe69d5c..4a82d3ecd5 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5258,6 +5258,31 @@ Authentication Modules, PAM} application API.")
      "This package provides a cancelable reader for Go.")
     (license license:expat)))
 
+(define-public go-github-com-muesli-combinator
+  (package
+    (name "go-github-com-muesli-combinator")
+    (version "0.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/muesli/combinator";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0rjw1rl1v38pn6lmyaz7yhgrwkyh22d6974lj33x1c86q0xpaw4d"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/muesli/combinator"))
+    (home-page "https://github.com/muesli/combinator";)
+    (synopsis "Cancelable reader for Go")
+    (description
+     "@code{combinator} generates a slice of all possible value combinations
+for any given struct and a set of its potential member values.  This can be
+used to generate extensive test matrixes among other things.")
+    (license license:expat)))
+
 (define-public go-github-com-muesli-reflow
   (package
     (name "go-github-com-muesli-reflow")

Reply via email to