gnu: libgnt: Build without python2.

* gnu/packages/messaging.scm (libgnt)[#:configure-flags]: Disable python2.
[propagated-inputs]: Remove python2.

Change-Id: I247089a02473c526d7facd8e7b7b6133426535a2
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Dariqq 2024-08-29 08:35:20 +00:00 committed by Liliana Marie Prikler
parent e3d6dc74ac
commit 6ab90024f1
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -272,6 +272,7 @@ (define-public libgnt
(outputs '("out" "doc"))
(arguments
(list #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
#:configure-flags #~'("-Dpython2=false")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-ncurses-path
@ -293,7 +294,7 @@ (define-public libgnt
gtk-doc/stable
pkg-config))
(inputs (list libxcrypt ncurses))
(propagated-inputs (list glib libxml2 python-2))
(propagated-inputs (list glib libxml2))
(synopsis "GLib Ncurses Toolkit")
(description "GNT is an ncurses toolkit for creating text-mode graphical
user interfaces in a fast and easy way. It is based on GLib and ncurses.")