guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e759bf58593c73e6462831fd23c92115f23de508
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Mon Jan 26 22:13:46 2026 -0300

    gnu: Add go-github-com-container-storage-interface-spec.
    
    * gnu/packages/golang-xyz.scm 
(go-github-com-container-storage-interface-spec): New variable.
    
    Change-Id: Ic950670f904023e506db8ac38de8ba1293bf3867
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d774e27bcc..ce53042d3d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -4896,6 +4896,37 @@ This in-memory cache uses 
@url{https://go.dev/blog/generics-proposal, Go
 Generics} which is introduced in 1.18.")
     (license license:expat)))
 
+(define-public go-github-com-container-storage-interface-spec
+  (package
+    (name "go-github-com-container-storage-interface-spec")
+    (version "1.12.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/container-storage-interface/spec";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1chim23b89xv1nz6kb1nr95dq994igy94izrkd9m440qf7rh2ig6"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:import-path "github.com/container-storage-interface/spec"))
+    (propagated-inputs
+     (list go-google-golang-org-grpc
+           go-google-golang-org-protobuf))
+    (home-page "https://github.com/container-storage-interface/spec";)
+    (synopsis "Container Storage Interface specification")
+    (description
+     "This project contains the CSI
+@url{https://github.com/container-storage-interface/spec/blob/v1.12.0/spec.md,
+specification} and
+@url{https://github.com/container-storage-interface/spec/blob/v1.12.0/csi.proto,
+protobuf} files.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-containerd-btrfs-v2
   (package
     (name "go-github-com-containerd-btrfs-v2")

Reply via email to