guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit 30ae58bca2100c0bfe50ffce1ba1cdcb3d05704e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 10 12:44:47 2025 +0100

    gnu: go-golang-org-x-image: Update to 0.32.0.
    
    * gnu/packages/golang-build.scm (go-golang-org-x-image): Update to 0.32.0.
    [arguments] <skip-build?>: Use it instead of deleting 'build phase.
    
    Change-Id: I4508a94887cec29a462c3fbf5e22cc7f61c0f666
---
 gnu/packages/golang-build.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index 1e2c6e6c5c..7350448d22 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -798,23 +798,23 @@ compile does not support generics.")
 (define-public go-golang-org-x-image
   (package
     (name "go-golang-org-x-image")
-    (version "0.27.0")
+    (version "0.32.0")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://go.googlesource.com/image";)
-             (commit (string-append "v" version))))
+              (url "https://go.googlesource.com/image";)
+              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0kc75lbfb0m9xp0idcqlpcis6xahblw2q7cj6vg9lmblxzqy5nvh"))))
+        (base32 "174mwxshc6idwihajb05h68ynf63ppfqw5zi6cm5ja08dsfbk43b"))))
     (build-system go-build-system)
     (arguments
      (list
+      #:skip-build? #t
       #:import-path "golang.org/x/image"
       #:phases
       #~(modify-phases %standard-phases
-          (delete 'build) ; no go files in project's root
           (add-after 'unpack 'remove-examples
             (lambda* (#:key import-path #:allow-other-keys)
               (delete-file-recursively

Reply via email to