diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-11-22 21:44:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-11-24 12:32:10 +0100 |
commit | 4c0449ba8fc0934665de730e660dcb18365ec70a (patch) | |
tree | 5dcc687285e9486908b7cd3725fbadaffb207b7f /gnu/packages | |
parent | a8082fefe01ee2694888e61311889fe553387823 (diff) | |
download | guix-4c0449ba8fc0934665de730e660dcb18365ec70a.tar.gz guix-4c0449ba8fc0934665de730e660dcb18365ec70a.zip |
gnu: r-minimal: Simplify build phase.
* gnu/packages/statistics.scm (r-minimal)[arguments]: Simplify phase
"remove-extraneous-references".
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/statistics.scm | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index caae27b0f9..6196d6bd69 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -452,26 +452,20 @@ available, greatly increasing its breadth and scope.") (substitute* (string-append out "/lib/R/bin/libtool") (((string-append "(-L)?(" - (assoc-ref inputs "bzip2") - "|" - (assoc-ref inputs "perl") - "|" - (assoc-ref inputs "texlive-bin") - "|" - (assoc-ref inputs "texinfo") - "|" - (assoc-ref inputs "xz") - "|" (format #false "~a/[^-]+-(~{~a~^|~})-[^/]+" (%store-directory) - '("glibc-utf8-locales" + '("bzip2" + "file" + "glibc-utf8-locales" + "graphite2" "libselinux" "libsepol" - "file" + "perl" + "texinfo" "texlive-bin" "util-macros" - "graphite2")) + "xz")) "|" (format #false "~a/[^-]+-glibc-[^-]+-static" (%store-directory)) |