mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: xorg: Make xkeyboard-config compile.
* gnu/packages/xorg.scm (xkeyboard-config): Add inputs gettext, intltool, perl-xml-parser.
This commit is contained in:
parent
2b8c5f547a
commit
42ed9985b1
1 changed files with 16 additions and 1 deletions
|
@ -3663,9 +3663,24 @@ (define-public xkeyboard-config
|
||||||
"1nmb7ma8rqryicc5xqrn2hm5pwp5lkf7nj28bwbf63mz2r0mk892"))))
|
"1nmb7ma8rqryicc5xqrn2hm5pwp5lkf7nj28bwbf63mz2r0mk892"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("libx11" ,libx11)
|
`(("gettext" ,gnu:gettext)
|
||||||
|
("intltool" ,intltool)
|
||||||
|
("libx11" ,libx11)
|
||||||
|
;; required to set PERL5LIB, although it is propagated by intltool
|
||||||
|
("perl-xml-parser" ,perl-xml-parser)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("xkbcomp" ,xkbcomp)))
|
("xkbcomp" ,xkbcomp)))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(alist-replace
|
||||||
|
'configure
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys #:rest args)
|
||||||
|
(let ((configure (assoc-ref %standard-phases 'configure))
|
||||||
|
(perl-xml-parser (assoc-ref inputs "perl-xml-parser")))
|
||||||
|
;; FIXME: This should be done more centrally.
|
||||||
|
(setenv "PERL5LIB" (string-append perl-xml-parser "/lib/perl5/site_perl"))
|
||||||
|
(apply configure args)))
|
||||||
|
%standard-phases)))
|
||||||
(home-page "http://www.x.org/wiki/")
|
(home-page "http://www.x.org/wiki/")
|
||||||
(synopsis "xorg implementation of the X Window System")
|
(synopsis "xorg implementation of the X Window System")
|
||||||
(description "X.org provides an implementation of the X Window System")
|
(description "X.org provides an implementation of the X Window System")
|
||||||
|
|
Loading…
Reference in a new issue