From 87333afac474ae49c1f9361484d0e30c17cfb918 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 13 Dec 2024 17:00:06 +0000 Subject: [PATCH] gnu: go-golang-org-x-exp-typeparams: Update to 0.0.0-20241210194714-1829a127f884. * gnu/packages/golang-build.scm (go-golang-org-x-exp-typeparams): Update to 0.0.0-20241210194714-1829a127f884. [arguments]: Skip one test. Change-Id: Ibe5b79342f80036d7bfa13b0da654489b450be55 --- gnu/packages/golang-build.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm index bb927837750c95149ae6132c1ed9f0691c1739a5..4731f8b5ec512f653b8d393cb9e831d7bab66e9c 100644 --- a/gnu/packages/golang-build.scm +++ b/gnu/packages/golang-build.scm @@ -529,7 +529,7 @@ directory) packages.") (define-public go-golang-org-x-exp-typeparams (package (name "go-golang-org-x-exp-typeparams") - (version "0.0.0-20240707233637-46b078467d37") + (version "0.0.0-20241210194714-1829a127f884") (source (origin (method git-fetch) @@ -538,12 +538,14 @@ directory) packages.") (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 - (base32 "17pwikql9x1bm5ci0kk4mlad7smkph0cgq1pi2b43gnhjz8m96l0")))) + (base32 "16lc0sgydpr4gbb5c9ygq86jdmq6f9qjf0vv1m5mhh3dggc1fzpp")))) (build-system go-build-system) (arguments (list #:import-path "golang.org/x/exp/typeparams" - #:unpack-path "golang.org/x/exp")) + #:unpack-path "golang.org/x/exp" + ;; Could not import go/ast (can't find import: "go/ast"). + #:test-flags #~(list "-skip" "TestAPIConsistency"))) (home-page "https://pkg.go.dev/golang.org/x/exp/typeparams") (synopsis "Golang common utilities for writing tools") (description