mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: ocaml-lacaml: Remove dependency on lapack.
* gnu/packages/ocaml.scm (ocaml-lacaml): Remove dependency on lapack. Change-Id: If3100fc29088110705e13e9be97abb7739f2fcab Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
8a52fef20f
commit
e6df74d2b1
1 changed files with 7 additions and 2 deletions
|
@ -8342,9 +8342,14 @@ (define-public ocaml-lacaml
|
|||
(properties '((tunable? . #t)))
|
||||
(build-system dune-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; No test target.
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'find-openblas
|
||||
(lambda* _
|
||||
(setenv "LACAML_LIBS" "-lopenblas"))))
|
||||
#:tests? #f)) ; No test target.
|
||||
(native-inputs
|
||||
(list openblas lapack ocaml-base ocaml-stdio))
|
||||
(list openblas ocaml-base ocaml-stdio))
|
||||
(home-page "https://mmottl.github.io/lacaml/")
|
||||
(synopsis
|
||||
"OCaml-bindings to BLAS and LAPACK")
|
||||
|
|
Loading…
Reference in a new issue