gnu: Add go-github-com-moby-docker-image-spec.

* gnu/packages/golang-xyz.scm (go-github-com-moby-docker-image-spec): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I0e2f1b3b5fbd68c64b4f6329fd0c32ba0e56be13
This commit is contained in:
David Thompson 2025-06-02 13:58:41 +02:00 committed by Ludovic Courtès
parent d9fbe7032c
commit 334397e394
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -12248,6 +12248,32 @@ parsing.")
"@code{geohash} provides encoding and decoding of string and integer geohashes.")
(license license:expat)))
(define-public go-github-com-moby-docker-image-spec
(package
(name "go-github-com-moby-docker-image-spec")
(version "1.3.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/moby/docker-image-spec")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "06r6z8s0rvl66n626q41hmqgnnlpsqdblj32fjq3r0qsccp8s167"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/moby/docker-image-spec"
#:skip-build? #t
#:tests? #f))
(propagated-inputs (list go-github-com-opencontainers-image-spec))
(home-page "https://github.com/moby/docker-image-spec")
(synopsis "Docker Image Specification v1.")
(description
"This directory contains documents about Docker Image Specification v1.X.")
(license license:asl2.0)))
(define-public go-github-com-moby-sys-mountinfo
(package
(name "go-github-com-moby-sys-mountinfo")