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 11:47:32 +0100 |
commit | 85e887ddc7037dcf285025ba8eecc0946a1b74fb (patch) | |
tree | bea3c63eecca9c553d0f003982c337018726b657 /gnu | |
parent | 10cdf1408047f16e02d097c4cd23c8efcddb5814 (diff) | |
download | guix-85e887ddc7037dcf285025ba8eecc0946a1b74fb.tar.gz guix-85e887ddc7037dcf285025ba8eecc0946a1b74fb.zip |
gnu: guile-git: Fix cross-compilation.
* gnu/packages/guile.scm (guile-git)[native-inputs]: Add guile and
guile-bytestructures.
Diffstat (limited to 'gnu')
-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 289158ea1b..a5466f8672 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -654,7 +654,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))) |