aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-11-06 10:02:47 +0100
committerChristopher Baines <mail@cbaines.net>2022-11-06 10:05:39 +0100
commit3f4ee0104d3599422f4f0038be8a0981485d7245 (patch)
tree0229b4bc8ea5c8ac9f8d641b044125f06ce09cee
parenta6c90c293d5b0c77d3e1e967546fe0aadc53a102 (diff)
downloadguix-r-minimal-fix.tar
guix-r-minimal-fix.tar.gz
gnu: r-minimal: Avoid referencing /gnu/store/[^-]+-glibc-[^-]+-static.r-minimal-fix
As this causes the following error when computing a cross-compilation derivation for r-minimal and related packages. I think this is coming from the string appearing in the sources section of the derivation, but not being a valid store path. * gnu/packages/statistics.scm (r-minimal)[arguments]: Split string involving /gnu/store.
-rw-r--r--gnu/packages/statistics.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 2d4dbe4a31..43988ad00e 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -470,7 +470,11 @@ available, greatly increasing its breadth and scope.")
"util-macros"
"graphite2"))
"|"
- "/gnu/store/[^-]+-glibc-[^-]+-static"
+ ;; Be careful when including store paths in the
+ ;; build script, since they might be treated as
+ ;; references
+ "/gnu/store"
+ "/[^-]+-glibc-[^-]+-static"
")/lib")) ""))))))))))))
(define-public rmath-standalone