guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit cc364e8d64051adbcf1c4ccc3aaffe9b01aa78b6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jun 23 14:28:42 2026 +0100
gnu: go-github-com-moby-moby-api: Update to 1.55.0.
* gnu/packages/golang-web.scm (go-github-com-moby-moby-api): Update to
1.55.0.
[source] <snippet>: Delete "vendor" directory.
[propagated-inputs]: Remove go-github-com-docker-go-connections and
go-golang-org-x-time.
[native-inputs]: Remove go-github-com-google-go-cmp.
---
gnu/packages/golang-web.scm | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 0b26e9269d..6d10e5da96 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -14397,17 +14397,20 @@ using a netlink socket.")
(define-public go-github-com-moby-moby-api
(package
(name "go-github-com-moby-moby-api")
- (version "1.52.0-beta.1")
+ (version "1.55.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/moby/moby")
- (commit (go-version->git-ref version
- #:subdir "api"))))
+ (commit (go-version->git-ref version #:subdir "api"))))
(file-name (git-file-name name version))
(sha256
- (base32 "0dzvs6byzn29qk06kpvr0gwdkznmjl6z4jd52xjwlxhj473gdj3f"))))
+ (base32 "109avd81qjlzkfq3l6c410qgsh5gyy9lch20d6iq2ys3gknckvbm"))
+ (modules '((guix build utils)))
+ (snippet
+ #~(begin
+ (delete-file-recursively "vendor")))))
(build-system go-build-system)
(arguments
(list
@@ -14415,16 +14418,13 @@ using a netlink socket.")
#: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
+ (list go-gotest-tools-v3
go-pgregory-net-rapid))
(propagated-inputs
- (list go-github-com-docker-go-connections
- go-github-com-docker-go-units
+ (list 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))
+ go-github-com-opencontainers-image-spec))
(home-page "https://github.com/moby/moby")
(synopsis "Docker Engine API")
(description