diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-11 15:06:19 -0400 |
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-11 15:06:19 -0400 |
| commit | df44d359f368e17e87f73a23694fab43e5d0f6ab (patch) | |
| tree | 38a65a6057b0d00356fca8bd108357108dd3d414 | |
| parent | 85d7babe64b49974f3edc6f4ee81fa8d33f0f087 (diff) | |
gnu: luit: Fix invalid locale.alias location.
Fixes <https://issues.guix.gnu.org/43592>.
* gnu/packages/xorg.scm (mkfontscale)[configure-flags]: Point to libx11's
locale.alias file via the '--with-localealiasfile' configure option.
[inputs]{libx11}: New input.
| -rw-r--r-- | gnu/packages/xorg.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 35bcbead399..d44bd52f542 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm | |||
| @@ -1548,8 +1548,14 @@ treat it as part of their software base when porting.") | |||
| 1548 | ;; should become obsolete with the next release. | 1548 | ;; should become obsolete with the next release. |
| 1549 | (patches (search-patches "luit-posix.patch")))) | 1549 | (patches (search-patches "luit-posix.patch")))) |
| 1550 | (build-system gnu-build-system) | 1550 | (build-system gnu-build-system) |
| 1551 | (arguments | ||
| 1552 | (list | ||
| 1553 | #:configure-flags | ||
| 1554 | #~(list (string-append "--with-localealiasfile=" | ||
| 1555 | (search-input-file | ||
| 1556 | %build-inputs "share/X11/locale/locale.alias"))))) | ||
| 1551 | (inputs | 1557 | (inputs |
| 1552 | (list libfontenc)) | 1558 | (list libfontenc libx11)) |
| 1553 | (native-inputs | 1559 | (native-inputs |
| 1554 | (list pkg-config)) | 1560 | (list pkg-config)) |
| 1555 | (home-page "https://www.x.org/wiki/") | 1561 | (home-page "https://www.x.org/wiki/") |
