me
/
guix
Archived
1
0
Fork 0

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.
master
Maxim Cournoyer 2022-07-11 15:06:19 -04:00
parent 85d7babe64
commit df44d359f3
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 7 additions and 1 deletions

View File

@ -1548,8 +1548,14 @@ treat it as part of their software base when porting.")
;; should become obsolete with the next release.
(patches (search-patches "luit-posix.patch"))))
(build-system gnu-build-system)
(arguments
(list
#:configure-flags
#~(list (string-append "--with-localealiasfile="
(search-input-file
%build-inputs "share/X11/locale/locale.alias")))))
(inputs
(list libfontenc))
(list libfontenc libx11))
(native-inputs
(list pkg-config))
(home-page "https://www.x.org/wiki/")