guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 8defe87c8300bc6eaec1ce956427cc421aabc636
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 28 01:33:39 2025 +0100
gnu: Add go-github-com-moby-moby-api.
* gnu/packages/golang-web.scm (go-github-com-moby-moby-api): New variable.
Change-Id: Ic0d46575371f043e256d13204408b630a42e8ab7
---
gnu/packages/golang-web.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index feef60477a..1c864ea494 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -7694,6 +7694,45 @@ compatible object storage.")
go-golang-org-x-crypto
go-golang-org-x-net))))
+(define-public go-github-com-moby-moby-api
+ (package
+ (name "go-github-com-moby-moby-api")
+ (version "1.52.0-beta.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/moby/moby")
+ (commit (go-version->git-ref version
+ #:subdir "api"))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0dzvs6byzn29qk06kpvr0gwdkznmjl6z4jd52xjwlxhj473gdj3f"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:import-path "github.com/moby/moby/api"
+ #:unpack-path "github.com/moby/moby"))
+ (native-inputs
+ (list go-github-com-google-go-cmp
+ go-gotest-tools-v3
+ go-pgregory-net-rapid))
+ (propagated-inputs
+ (list go-github-com-docker-go-connections
+ go-github-com-docker-go-units
+ go-github-com-moby-docker-image-spec
+ go-github-com-opencontainers-go-digest
+ go-github-com-opencontainers-image-spec
+ go-golang-org-x-time))
+ (home-page "https://github.com/moby/moby")
+ (synopsis "Docker Engine API")
+ (description
+ "The Docker Engine API is an HTTP API used by the command-line client to
+communicate with the daemon. It can also be used by third-party software to
+control the daemon.")
+ (license license:asl2.0)))
+
(define-public go-github-com-muhlemmer-httpforwarded
(package
(name "go-github-com-muhlemmer-httpforwarded")