mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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.
This commit is contained in:
parent
85d7babe64
commit
df44d359f3
1 changed files with 7 additions and 1 deletions
|
@ -1548,8 +1548,14 @@ (define-public luit
|
|||
;; 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/")
|
||||
|
|
Loading…
Reference in a new issue