diff options
author | Romain GARBAGE <romain.garbage@inria.fr> | 2024-03-11 12:06:53 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-04-04 16:17:28 +0200 |
commit | c89591014bbb33d76f7d9478ffc6a1836e238f8c (patch) | |
tree | 931dde4b64395561d7761955bd26c490ce2ac63d /gnu | |
parent | 55d48b9a2f1658ff1414deb2c7e223c35ec5ed66 (diff) | |
download | guix-c89591014bbb33d76f7d9478ffc6a1836e238f8c.tar.gz guix-c89591014bbb33d76f7d9478ffc6a1836e238f8c.zip |
gnu: ghc-hmatrix: Switch to openblas.
* gnu/packages/haskell-xyz.scm (ghc-hmatrix): Switch input dependency from
lapack to openblas. Add configure flags.
Change-Id: Ic8924b1fb9fa61af16abd1ac2a22c82a352a8e1b
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 5d9e5757a0..b5943f2f47 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -5325,18 +5325,15 @@ Accounting.") (build-system haskell-build-system) (properties '((upstream-name . "hmatrix"))) (arguments - `(#:extra-directories ("lapack"))) + `(#:configure-flags '("--flags=openblas") + #:extra-directories ("openblas"))) (inputs (list ghc-random ghc-split ghc-storable-complex ghc-semigroups ghc-vector - ;;("openblas" ,openblas) - lapack)) - ;; Guix's OpenBLAS is built with the flag "NO_LAPACK=1" which - ;; disables inclusion of the LAPACK functions. - ;; (arguments `(#:configure-flags '("--flags=openblas"))) + openblas)) (home-page "https://github.com/albertoruiz/hmatrix") (synopsis "Haskell numeric linear algebra library") (description "The HMatrix package provices a Haskell library for |