diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-02-18 11:47:32 +0100 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-02-18 14:34:43 +0100 |
commit | 96a9675b55844c8ab3e81ee53ffaad35d289a845 (patch) | |
tree | 8d10094b57cece1d200c0e0c66bbbcd46ab888cd /gnu/packages | |
parent | ce59688d33ebddb52cea719efb1d8a51ea13adf0 (diff) | |
download | guix-96a9675b55844c8ab3e81ee53ffaad35d289a845.tar.gz guix-96a9675b55844c8ab3e81ee53ffaad35d289a845.zip |
gnu: guile-git: Fix cross-compilation.
* gnu/packages/guile.scm (guile-git)[native-inputs]: Add guile and
guile-bytestructures.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/guile.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index cb88308278..53d626b9d2 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -647,7 +647,9 @@ type system, elevating types to first-class status.") "0c5i3d16hp7gp9rd78vk9zc45js8bphf92m4lbb5gyi4l1yl7kkm")))) (build-system gnu-build-system) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + ("guile" ,guile-2.2) + ("guile-bytestructures" ,guile-bytestructures))) (inputs `(("guile" ,guile-2.2) ("libgit2" ,libgit2))) |