diff options
author | Pierre-Moana Levesque <pierre.moana.levesque@gmail.com> | 2019-08-08 17:16:50 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-09-24 08:13:40 +0200 |
commit | c3d523b04812c49080fbb5f95db5a03b73e36429 (patch) | |
tree | 9951d8d160abc014e3c45f78e73693e990746d6d | |
parent | 6fe3e25006308ebd570996d444475a6a30d4d30e (diff) | |
download | guix-c3d523b04812c49080fbb5f95db5a03b73e36429.tar.gz |
gnu: guile-xcb: Fix cross-compilation.
* gnu/packages/guile-wm.scm (guile-xcb)[native-inputs]: Add guile.
-rw-r--r-- | gnu/packages/guile-wm.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/guile-wm.scm b/gnu/packages/guile-wm.scm index 622fc560d9..3a6eebc91a 100644 --- a/gnu/packages/guile-wm.scm +++ b/gnu/packages/guile-wm.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2016 Alex ter Weele <alex.ter.weele@gmail.com> ;;; Copyright © 2017, 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2017 ng0 <ng0@n0.is> +;;; Copyright © 2019 Pierre-Moana Levesque <pierre.moana.levesque@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -57,7 +58,8 @@ "--with-guile-site-ccache-dir=" (assoc-ref %outputs "out") "/lib/guile/2.2/site-ccache")))) - (native-inputs `(("pkg-config" ,pkg-config) + (native-inputs `(("guile" ,guile-2.2) + ("pkg-config" ,pkg-config) ("texinfo" ,texinfo))) (inputs `(("guile" ,guile-2.2) ("xcb" ,xcb-proto))) |