gnu: ratpoison: Reference xterm absolutely.
* gnu/packages/ratpoison.scm (ratpoison) [configure-flags]: Specify the '--with-xterm' configure flag. [inputs]: Add xterm.
This commit is contained in:
parent
a664f453d5
commit
6b650fde41
1 changed files with 7 additions and 1 deletions
|
@ -49,6 +49,11 @@
|
||||||
(list
|
(list
|
||||||
#:modules `((ice-9 format)
|
#:modules `((ice-9 format)
|
||||||
,@%gnu-build-system-modules)
|
,@%gnu-build-system-modules)
|
||||||
|
;; Specify the absolute location of xterm, as the user experience sucks
|
||||||
|
;; when no terminal is available (can't consult help with 'C-t ?', for
|
||||||
|
;; example).
|
||||||
|
#:configure-flags #~(list (string-append "--with-xterm="
|
||||||
|
#$(this-package-input "xterm")))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-xsession
|
(add-after 'install 'install-xsession
|
||||||
|
@ -78,7 +83,8 @@
|
||||||
libxtst
|
libxtst
|
||||||
libx11
|
libx11
|
||||||
readline
|
readline
|
||||||
xorgproto))
|
xorgproto
|
||||||
|
xterm))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list perl
|
(list perl
|
||||||
pkg-config))
|
pkg-config))
|
||||||
|
|
Reference in a new issue