gnu: Add ncurses-with-tinfo.
* gnu/packages/ncurses.scm (ncurses/tinfo): New variable.master
parent
e777c3e34c
commit
20302e0b16
|
@ -247,6 +247,17 @@ ncursesw library provides wide character support.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("gpm" ,gpm)))))
|
`(("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
|
(define-public dialog
|
||||||
(package
|
(package
|
||||||
(name "dialog")
|
(name "dialog")
|
||||||
|
|
Reference in New Issue