guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4bc5d1785f8880a22b0789690aa6d98e8ef8f022
Author: Arun Isaac <[email protected]>
AuthorDate: Fri Feb 6 01:24:06 2026 +0000

    gnu: Add go-github-com-mschoch-smat.
    
    * gnu/packages/golang-xyz.scm (go-github-com-mschoch-smat): New variable.
    
    Signed-off-by: jgart <[email protected]>
---
 gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index af65815df2..59fca4eb6a 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -19147,6 +19147,30 @@ the network.")
 that avoids runtime memory allocations.")
     (license license:asl2.0)))
 
+(define-public go-github-com-mschoch-smat
+  (package
+    (name "go-github-com-mschoch-smat")
+    (version "0.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/mschoch/smat";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1qcb2jjg37krxmc915kqynghd6n26w2wxwgcafvxcwn8g0jx96qd"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/mschoch/smat"))
+    (native-inputs
+     (list go-github-com-boltdb-bolt))
+    (home-page "https://github.com/mschoch/smat";)
+    (synopsis "State machine assisted testing")
+    (description "This package provides a state machine assisted testing
+library for Go.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-pbnjay-memory
   (let ((commit "7b4eea64cf580186c0eceb10dc94ba3a098af46c")
         (revision "2"))

Reply via email to