diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2023-05-01 18:47:48 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-24 15:04:01 +0200 |
commit | 761d78ea95bdff0a85f4f9f87ca8a2538cdbd28b (patch) | |
tree | f78472d0f639b0d9c9d48167c19e8efe6f789bf6 | |
parent | 0a5998941a6a203f3dad3586d0ce8999d7bf5ff4 (diff) | |
download | guix-761d78ea95bdff0a85f4f9f87ca8a2538cdbd28b.tar.gz |
gnu: guile-smc: Fix cross-building.
* gnu/packages/guile-xyz.scm (guile-smc)[native-inputs]: Add guile-3.0 and guile-lib. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/guile-xyz.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index f97b835da8..782fd1f54b 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -5344,7 +5344,15 @@ GitLab instance.") (,(string-append out go) ,(string-append guile-lib go)))))))))) (native-inputs - (list autoconf automake pkg-config texinfo help2man which)) + (list autoconf + automake + pkg-config + texinfo + help2man + which + ;; needed when cross-compiling. + guile-3.0 + guile-lib)) (inputs (list bash-minimal guile-3.0 guile-lib inetutils)) (home-page "https://github.com/artyom-poptsov/guile-smc") |