guix_mirror_bot pushed a commit to branch master
in repository guix.

commit f262e967e4d5c88a90c0d9bf7d50a8430aff9de0
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Sat Sep 19 10:31:08 2026 -0300

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

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index fb386f670a1..5281340af6c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -29867,6 +29867,32 @@ GNU/Linux, this is a proxy for the @command{xdg-open} 
command.")
 @url{https://github.com/tree-sitter/tree-sitter, tree-sitter} in Golang.")
     (license license:expat)))
 
+(define-public go-github-com-smallstep-truststore
+  (package
+    (name "go-github-com-smallstep-truststore")
+    (version "0.13.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/smallstep/truststore";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0alnwgg360yhidzklg18l0q4qn3nfggq6kjadpayk92ynq00bkqy"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:test-flags
+      #~(list "-vet=off")
+      #:import-path "github.com/smallstep/truststore"))
+    (propagated-inputs (list go-howett-net-plist))
+    (home-page "https://github.com/smallstep/truststore";)
+    (synopsis "Local development certificates installation for Golang")
+    (description "This package provides means to locally install
+development certificates.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-songgao-packets
   (package
     (name "go-github-com-songgao-packets")

Reply via email to