diff options
| author | Andreas Enge <andreas@enge.fr> | 2014-11-22 00:14:09 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2014-11-22 13:06:58 +0100 |
| commit | 5dee80dde28bbaf00a1bc6c22a2e38474db00634 (patch) | |
| tree | 6dbba7c78f5e65bbbe4d7c5ca56f583753e08907 /gnu | |
| parent | 8b6a5e0f82660492612ee78894f02d82ac5324a2 (diff) | |
gnu: libxkbcommon: Add inputs libx11 and xkeyboard-config and use
corresponding configure flags.
* gnu/packages/qt.scm (libxkbcommon): Add inputs libx11 and xkeyboard-config.
Use configure flags to set XKB config root and X11 locale root
directories.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/qt.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 8d688ff7f46..30b772d4d90 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm | |||
| @@ -53,10 +53,20 @@ | |||
| 53 | "176ii5dn2wh74q48sd8ac37ljlvgvp5f506glr96z6ibfhj7igch")))) | 53 | "176ii5dn2wh74q48sd8ac37ljlvgvp5f506glr96z6ibfhj7igch")))) |
| 54 | (build-system gnu-build-system) | 54 | (build-system gnu-build-system) |
| 55 | (inputs | 55 | (inputs |
| 56 | `(("libxcb" ,libxcb))) | 56 | `(("libx11" ,libx11) |
| 57 | ("libxcb" ,libxcb) | ||
| 58 | ("xkeyboard-config" ,xkeyboard-config))) | ||
| 57 | (native-inputs | 59 | (native-inputs |
| 58 | `(("bison" ,bison) | 60 | `(("bison" ,bison) |
| 59 | ("pkg-config" ,pkg-config))) | 61 | ("pkg-config" ,pkg-config))) |
| 62 | (arguments | ||
| 63 | `(#:configure-flags | ||
| 64 | (list (string-append "--with-xkb-config-root=" | ||
| 65 | (assoc-ref %build-inputs "xkeyboard-config") | ||
| 66 | "/share/X11/xkb") | ||
| 67 | (string-append "--with-x-locale-root=" | ||
| 68 | (assoc-ref %build-inputs "libx11") | ||
| 69 | "/share/X11/locale")))) | ||
| 60 | (home-page "http://xkbcommon.org/") | 70 | (home-page "http://xkbcommon.org/") |
| 61 | (synopsis "Library to handle keyboard descriptions") | 71 | (synopsis "Library to handle keyboard descriptions") |
| 62 | (description "Xkbcommon is a library to handle keyboard descriptions, | 72 | (description "Xkbcommon is a library to handle keyboard descriptions, |
