guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: Add ncurses-with-tinfo.


From: guix-commits
Subject: 01/03: gnu: Add ncurses-with-tinfo.
Date: Tue, 5 Apr 2022 15:15:19 -0400 (EDT)

vagrantc pushed a commit to branch master
in repository guix.

commit 20302e0b161a9a44e8630c65658bc11057834da5
Author: Vagrant Cascadian <vagrant@debian.org>
AuthorDate: Tue Mar 29 23:34:42 2022 +0000

    gnu: Add ncurses-with-tinfo.
    
    * gnu/packages/ncurses.scm (ncurses/tinfo): New variable.
---
 gnu/packages/ncurses.scm | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gnu/packages/ncurses.scm b/gnu/packages/ncurses.scm
index 311a681d09..5b00da25bb 100644
--- a/gnu/packages/ncurses.scm
+++ b/gnu/packages/ncurses.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]