summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2026-02-06 01:24:06 +0000
committerjgart <jgart@dismail.de>2026-02-06 14:25:51 -0600
commit4bc5d1785f8880a22b0789690aa6d98e8ef8f022 (patch)
tree065e9a469c9b54bc5a635cf53ae9519acd9460a3
parente84d9242443a1750553dcddc481149ddd0bddbbb (diff)
gnu: Add go-github-com-mschoch-smat.
* gnu/packages/golang-xyz.scm (go-github-com-mschoch-smat): New variable. Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r--gnu/packages/golang-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index af65815df20..59fca4eb6ae 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -19147,6 +19147,30 @@ the network.")
19147that avoids runtime memory allocations.") 19147that avoids runtime memory allocations.")
19148 (license license:asl2.0))) 19148 (license license:asl2.0)))
19149 19149
19150(define-public go-github-com-mschoch-smat
19151 (package
19152 (name "go-github-com-mschoch-smat")
19153 (version "0.2.0")
19154 (source
19155 (origin
19156 (method git-fetch)
19157 (uri (git-reference
19158 (url "https://github.com/mschoch/smat")
19159 (commit (string-append "v" version))))
19160 (file-name (git-file-name name version))
19161 (sha256
19162 (base32 "1qcb2jjg37krxmc915kqynghd6n26w2wxwgcafvxcwn8g0jx96qd"))))
19163 (build-system go-build-system)
19164 (arguments
19165 (list #:import-path "github.com/mschoch/smat"))
19166 (native-inputs
19167 (list go-github-com-boltdb-bolt))
19168 (home-page "https://github.com/mschoch/smat")
19169 (synopsis "State machine assisted testing")
19170 (description "This package provides a state machine assisted testing
19171library for Go.")
19172 (license license:asl2.0)))
19173
19150(define-public go-github-com-pbnjay-memory 19174(define-public go-github-com-pbnjay-memory
19151 (let ((commit "7b4eea64cf580186c0eceb10dc94ba3a098af46c") 19175 (let ((commit "7b4eea64cf580186c0eceb10dc94ba3a098af46c")
19152 (revision "2")) 19176 (revision "2"))