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

commit af1ff09e0d4d49329a4b9302618c3141786d6215
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 12 11:39:37 2025 +0100

    gnu: go-github-com-klauspost-reedsolomon: Fix build.
    
    * gnu/packages/golang-xyz.scm (go-github-com-klauspost-reedsolomon)
    [phases] <go-generate>: 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")

Reply via email to