guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3b3d1dc1f2174becdf498dec3d9350c4278191f4
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jul 22 23:52:51 2025 +0100

    gnu: Add go-github-com-opencontainers-image-spec-1.0.2.
    
    * gnu/packages/golang-xyz.scm 
(go-github-com-opencontainers-image-spec-1.0.2): New variable.
    
    Change-Id: I8e7c996386e80a93dbaff32de518ffc583c8950d
---
 gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 4c4a2f2877..f7126c2d7e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -15622,6 +15622,30 @@ digests with little effort.")
 container image format spec (OCI Image Format).")
     (license license:asl2.0)))
 
+;; For [email protected], remove when a fresh version is released.
+(define-public go-github-com-opencontainers-image-spec-1.0.2
+  (hidden-package
+   (package
+     (inherit go-github-com-opencontainers-image-spec)
+     (name "go-github-com-opencontainers-image-spec")
+     (version "1.0.2")
+     (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+           (url "https://github.com/opencontainers/image-spec";)
+           (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "1wcw1z39wjx338406ga86a41f5ird0yc4ab3c70nfhkpkvjjzhkm"))))
+     (arguments
+      (list #:skip-build? #t
+            #:tests? #f
+            #:import-path "github.com/opencontainers/image-spec"))
+     (propagated-inputs
+      (list go-github-com-pkg-errors)))))
+
 (define-public go-github-com-opencontainers-runc
   (package
     (name "go-github-com-opencontainers-runc")

Reply via email to