diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2024-01-30 12:52:12 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2024-01-30 15:16:20 +0100 |
| commit | a874d44053b01b1dfd0e0a2cea5594d0b849175a (patch) | |
| tree | 5cd55ca4e5e490fe99fa381b71086f0feb4557ea /gnu | |
| parent | afe677a623f3ede51f3bb9be121de3d8ff0ea36e (diff) | |
gnu: r-with-tests: Prevent compression of libraries.
Compression prevents Guix from detecting references.
This is a follow-up to commit ff0d34a29bc0f19b1dd2714fc0a3bd73a244aebe.
Reported-by: Jonas Freimuth.
* gnu/packages/statistics.scm (r-with-tests)[arguments]: Do not compress
included libraries like "parallel".
Change-Id: I278d19c1504d8ac33a1fc4a941467705a37d574d
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/statistics.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index e1c3aec0cb1..6b2d7ac0215 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm | |||
| @@ -241,7 +241,12 @@ This package also provides @command{xls2csv} to export Excel files to CSV.") | |||
| 241 | ;; This ensures that Guix can detect embedded store references; | 241 | ;; This ensures that Guix can detect embedded store references; |
| 242 | ;; see bug #28157 for details. | 242 | ;; see bug #28157 for details. |
| 243 | (substitute* "src/library/base/makebasedb.R" | 243 | (substitute* "src/library/base/makebasedb.R" |
| 244 | (("compress = TRUE") "compress = FALSE")))) | 244 | (("compress = TRUE") "compress = FALSE")) |
| 245 | (substitute* '("src/library/tools/Makefile.in" | ||
| 246 | "share/make/basepkg.mk" | ||
| 247 | "share/make/lazycomp.mk") | ||
| 248 | (("makeLazyLoading\\(") | ||
| 249 | "makeLazyLoading(compress=FALSE,")))) | ||
| 245 | (add-before 'configure 'patch-coreutils-paths | 250 | (add-before 'configure 'patch-coreutils-paths |
| 246 | (lambda* (#:key inputs #:allow-other-keys) | 251 | (lambda* (#:key inputs #:allow-other-keys) |
| 247 | (let ((uname-bin (search-input-file inputs "/bin/uname")) | 252 | (let ((uname-bin (search-input-file inputs "/bin/uname")) |
