guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 89c1b41aa5792bfa8ed7b247b249dfc87ebf76c0
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Sat Sep 19 11:36:26 2026 -0300

    gnu: Add go-github-com-smallstep-assert.
    
    * gnu/packages/golang-check.scm (go-github-com-smallstep-assert): New 
variable.
    
    Relates-to: guix/guix#9385, guix/guix!11354
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-check.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index b907d489f2a..9504f309adc 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -3742,6 +3742,28 @@ Go blog post.")
 instead of @code{t.Setenv} since Go1.17.")
     (license license:expat)))
 
+(define-public go-github-com-smallstep-assert
+  (package
+    (name "go-github-com-smallstep-assert")
+    (version "0.0.0-20200723003110-82e2b9b3b262")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/smallstep/assert";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "05zxnirw8lmm314pxwplz391ly4wa4mmlqzjgpy0h8i395011caz"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/smallstep/assert"))
+    (home-page "https://github.com/smallstep/assert";)
+    (synopsis "Assertion framework for Go")
+    (description "This package provides a simple assertion framework for Go.")
+    (license license:expat)))
+
 (define-public go-github-com-smarty-assertions
   (package
     (name "go-github-com-smarty-assertions")

Reply via email to