gnu: Add ncurses-with-tinfo.

* gnu/packages/ncurses.scm (ncurses/tinfo): New variable.
This commit is contained in:
Vagrant Cascadian 2022-03-29 23:34:42 +00:00
parent e777c3e34c
commit 20302e0b16
No known key found for this signature in database
GPG Key ID: DC518FC87F9716AA

View File

@ -247,6 +247,17 @@ ncursesw library provides wide character support.")
(inputs
`(("gpm" ,gpm)))))
;; Needed by u-boot 2022.04+
;; Consider merging into ncurses for next core-updates cycle.
(define-public ncurses/tinfo
(package/inherit ncurses
(name "ncurses-with-tinfo")
(arguments
(substitute-keyword-arguments (package-arguments ncurses)
((#:configure-flags cf)
`(cons "--with-termlib=tinfo"
,cf))))))
(define-public dialog
(package
(name "dialog")