diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-04-27 22:45:02 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-04-27 22:45:02 +0200 |
commit | 3153ca9d5f13492198890ea7893340737c11b85d (patch) | |
tree | 3b01da4d9376136fe6db09838ad34969b6f74f28 | |
parent | fc3ebc3023f2c419ad07536de9211109c1bb2452 (diff) |
gnu: r-rhtslib: Fix build.
* gnu/packages/bioinformatics.scm (r-rhtslib)[arguments]: Add
"--no-staged-install" to configure flags.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 78d6fe8718..8a49e1e350 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -8290,6 +8290,9 @@ secondary structure and comparative analysis in R.") "13fv78sk5g0gqfl3ks3rps3zc1k66a4lzxvgn36r7ix43yxk7hnr")))) (properties `((upstream-name . "Rhtslib"))) (build-system r-build-system) + ;; Without this a temporary directory ends up in the Rhtslib.so binary, + ;; which makes R abort the build. + (arguments '(#:configure-flags '("--no-staged-install"))) (propagated-inputs `(("r-zlibbioc" ,r-zlibbioc))) (inputs |