From 334397e39494ca6d60ee6d37d8dd862e002f76ab Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 2 Jun 2025 13:58:41 +0200 Subject: [PATCH] gnu: Add go-github-com-moby-docker-image-spec. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/golang-xyz.scm (go-github-com-moby-docker-image-spec): New variable. Co-authored-by: Ludovic Courtès Change-Id: I0e2f1b3b5fbd68c64b4f6329fd0c32ba0e56be13 --- 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 df2c09b683a..2e0aa42bfc8 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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")