guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a091f0bd54ac74393fab98aab0cbbbfde56d9932
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Sat Sep 19 11:57:13 2026 -0300

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

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index a2dc3795f39..e346090099a 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -20995,6 +20995,36 @@ metric formats, it comes with a middleware that can be 
used for different
 frameworks and also the the main Go net/http handler:.")
     (license license:asl2.0)))
 
+(define-public go-github-com-smallstep-linkedca
+  (package
+    (name "go-github-com-smallstep-linkedca")
+    (version "0.26.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/smallstep/linkedca";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0sag4ilzss1gb7c2dx2yb130dls59fb16rkv3xw2pm1lcpwhdcw3"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/smallstep/linkedca"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-google-golang-org-grpc
+           go-google-golang-org-grpc-cmd-protoc-gen-go-grpc
+           go-google-golang-org-protobuf))
+    (home-page "https://github.com/smallstep/linkedca";)
+    (synopsis "Support for Linked CAs using protocol buffers and @code{gRPC}")
+    (description
+     "This package provides support for Linked CAs using protocol buffers and
+@code{gRPC}.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-smartystreets-go-aws-auth
   (package
     (name "go-github-com-smartystreets-go-aws-auth")

Reply via email to