From a38f82e993ccbfda3bdc954121b6e4e1454e88d4 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 12 Jun 2025 11:39:37 +0100 Subject: [PATCH] gnu: go-github-com-klauspost-reedsolomon: Fix build. * gnu/packages/golang-xyz.scm (go-github-com-klauspost-reedsolomon) [phases] : Adjust path after setting default go to 1.24. Change-Id: Ifae2e34be32da536bd28d4e33ea25a1f800184b2 --- gnu/packages/golang-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 02cf5bc8e7..1ef3f1c129 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -11718,8 +11718,8 @@ very eas to use.") (delete-file-recursively "examples")))) (add-before 'build 'go-generate (lambda* (#:key import-path #:allow-other-keys) - (with-directory-excursion (string-append "src/" import-path) - (invoke "go" "generate" "-v" "-n" "_gen"))))))) + (with-directory-excursion (string-append "src/" import-path "/_gen") + (invoke "go" "generate" "-v" "-n"))))))) (propagated-inputs (list go-github-com-klauspost-cpuid-v2)) (home-page "https://github.com/klauspost/reedsolomon") (synopsis "Reed-Solomon algorithm implementation in Golang")