summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-12 11:39:37 +0100
committerAndreas Enge <andreas@enge.fr>2025-07-26 19:55:46 +0200
commit728b55e65e1e31fa9bd36b038023805ab4be1745 (patch)
tree6634fc1ad5980d60044ff40fa3760308715b995a
parent84b709acb48c7d3177b628cdcca8ab9979945e5a (diff)
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
-rw-r--r--gnu/packages/golang-xyz.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3ba42fe6f0..79fa0220f0 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -11660,8 +11660,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")