gnu: vcflib: Find submodule sources in native-inputs during cross-compilation.
* gnu/packages/bioinformatics.scm (vcflib)[arguments]: In the unpack-submodule-sources phase, look for submodule sources in both inputs and native-inputs. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
9a68c07507
commit
9047a31152
1 changed files with 8 additions and 6 deletions
|
@ -14618,15 +14618,17 @@ (define-public vcflib
|
|||
(substitute* "test/Makefile"
|
||||
(("libvcflib.a") "libvcflib.so"))))
|
||||
(add-after 'unpack 'unpack-submodule-sources
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
||||
(let ((unpack (lambda (source target)
|
||||
(mkdir target)
|
||||
(with-directory-excursion target
|
||||
(if (file-is-directory? (assoc-ref inputs source))
|
||||
(copy-recursively (assoc-ref inputs source) ".")
|
||||
(invoke "tar" "xvf"
|
||||
(assoc-ref inputs source)
|
||||
"--strip-components=1"))))))
|
||||
(let ((source (or (assoc-ref inputs source)
|
||||
(assoc-ref native-inputs source))))
|
||||
(if (file-is-directory? source)
|
||||
(copy-recursively source ".")
|
||||
(invoke "tar" "xvf"
|
||||
source
|
||||
"--strip-components=1")))))))
|
||||
(and
|
||||
(unpack "filevercmp-src" "filevercmp")
|
||||
(unpack "fsom-src" "fsom")
|
||||
|
|
Loading…
Reference in a new issue