mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add ncurses-with-tinfo.
* gnu/packages/ncurses.scm (ncurses/tinfo): New variable.
This commit is contained in:
parent
e777c3e34c
commit
20302e0b16
1 changed files with 11 additions and 0 deletions
|
@ -247,6 +247,17 @@ (define-public ncurses/gpm
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue