diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-07-03 18:42:58 +0200 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-07-03 18:45:14 +0200 |
commit | b05d1c68bc99a7eb38691151481db7f3a7977a5e (patch) | |
tree | f01478c607047cebf1970e51cf2996156814373e | |
parent | 606c6380164224c3d18f91269d8ad2d95444f054 (diff) | |
download | guix-b05d1c68bc99a7eb38691151481db7f3a7977a5e.tar.gz guix-b05d1c68bc99a7eb38691151481db7f3a7977a5e.zip |
gnu: r: Replace "atlas" with "openblas".
* gnu/packages/statistics.scm (r)[inputs]: Replace "atlas" with "openblas".
-rw-r--r-- | gnu/packages/statistics.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 1697ce258e..2d8690c74e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -69,7 +69,7 @@ ;; Some tests require the timezone to be set. (lambda _ (setenv "TZ" "UTC") #t))) #:configure-flags - '("--with-blas" + '("--with-blas=openblas" "--with-lapack" "--with-cairo" "--with-libpng" @@ -92,7 +92,7 @@ ("which" ,which) ; for tests/Examples/base-Ex.R ("xz" ,xz))) (inputs - `(("atlas" ,atlas) ; --with-blas + `(("openblas" ,openblas) ("cairo" ,cairo) ("gfortran" ,gfortran) ("icu4c" ,icu4c) |