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 @@ library automatically handles index file generation and use.")
|
||||||
(substitute* "test/Makefile"
|
(substitute* "test/Makefile"
|
||||||
(("libvcflib.a") "libvcflib.so"))))
|
(("libvcflib.a") "libvcflib.so"))))
|
||||||
(add-after 'unpack 'unpack-submodule-sources
|
(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)
|
(let ((unpack (lambda (source target)
|
||||||
(mkdir target)
|
(mkdir target)
|
||||||
(with-directory-excursion target
|
(with-directory-excursion target
|
||||||
(if (file-is-directory? (assoc-ref inputs source))
|
(let ((source (or (assoc-ref inputs source)
|
||||||
(copy-recursively (assoc-ref inputs source) ".")
|
(assoc-ref native-inputs source))))
|
||||||
(invoke "tar" "xvf"
|
(if (file-is-directory? source)
|
||||||
(assoc-ref inputs source)
|
(copy-recursively source ".")
|
||||||
"--strip-components=1"))))))
|
(invoke "tar" "xvf"
|
||||||
|
source
|
||||||
|
"--strip-components=1")))))))
|
||||||
(and
|
(and
|
||||||
(unpack "filevercmp-src" "filevercmp")
|
(unpack "filevercmp-src" "filevercmp")
|
||||||
(unpack "fsom-src" "fsom")
|
(unpack "fsom-src" "fsom")
|
||||||
|
|
Reference in a new issue