guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 95c4814310a06fc1bf7b4e2722b4423c374583e4
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 21:01:59 2026 +0000

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

diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 32678363f4..3780650589 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -2265,6 +2265,31 @@ output.")
 single file ready for https://coveralls.io/.";)
     (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-nbio-st
   (package
     (name "go-github-com-nbio-st")

Reply via email to