mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: emacs-eat: Patch ncurses tic executable.
* gnu/packages/emacs-xyz.scm (emacs-eat)[arguments]<#:phases>: Patch tic executable. [native-inputs]: Remove NCURSES. [inputs]: Add NCURSES. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
4d313b918e
commit
450045b5c3
1 changed files with 10 additions and 2 deletions
|
@ -27981,9 +27981,17 @@ (define-public emacs-eat
|
|||
(invoke "make" "info")))
|
||||
(add-before 'install 'build-terminfo-database
|
||||
(lambda _
|
||||
(invoke "make" "terminfo"))))))
|
||||
(invoke "make" "terminfo")))
|
||||
(add-before 'install 'patch-ncurses-tic-executable
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((tic (search-input-file inputs "/bin/tic")))
|
||||
(substitute* "eat.el"
|
||||
(("\\(executable-find \"tic\"\\)")
|
||||
(string-append "\"" tic "\"")))))))))
|
||||
(native-inputs
|
||||
(list ncurses texinfo))
|
||||
(list texinfo))
|
||||
(inputs
|
||||
(list ncurses))
|
||||
(home-page "https://codeberg.org/akib/emacs-eat")
|
||||
(synopsis "Terminal emulator in Emacs")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue