mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-05 02:16:31 +01: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 @@ treat it as part of their software base when porting.")
|
||||||
;; should become obsolete with the next release.
|
;; should become obsolete with the next release.
|
||||||
(patches (search-patches "luit-posix.patch"))))
|
(patches (search-patches "luit-posix.patch"))))
|
||||||
(build-system gnu-build-system)
|
(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
|
(inputs
|
||||||
(list libfontenc))
|
(list libfontenc libx11))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(home-page "https://www.x.org/wiki/")
|
(home-page "https://www.x.org/wiki/")
|
||||||
|
|
Loading…
Add table
Reference in a new issue