mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: python-numpy: Avoid usage of 'this-package-input'.
* gnu/packages/python-xyz.scm (python-numpy)[arguments]: Use SEARCH-INPUT-FILE instead of THIS-PACKAGE-INPUT.
This commit is contained in:
parent
59c136ef61
commit
859509a11c
1 changed files with 4 additions and 1 deletions
|
@ -5618,7 +5618,10 @@ (define-public python-numpy
|
|||
[openblas]
|
||||
libraries = openblas
|
||||
library_dirs = ~a/lib
|
||||
include_dirs = ~:*~a/include~%" #$(this-package-input "openblas"))))))
|
||||
include_dirs = ~:*~a/include~%"
|
||||
(dirname (dirname
|
||||
(search-input-file
|
||||
inputs "include/openblas_config.h"))))))))
|
||||
(add-before 'build 'fix-executable-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; Make /gnu/store/...-bash-.../bin/sh the default shell,
|
||||
|
|
Loading…
Reference in a new issue