me
/
guix
Archived
1
0
Fork 0

gnu: Add vte-with-gtk-4.

* gnu/packages/gnome.scm (vte-with-gtk-4): New variable.
master
Liliana Marie Prikler 2023-01-16 16:50:31 +01:00
parent a38903ece6
commit abdca6f9e0
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 9 additions and 0 deletions

View File

@ -4634,6 +4634,15 @@ gnome-terminal, but can also be used to embed a console/terminal in games,
editors, IDEs, etc.")
(license license:lgpl2.1+)))
(define-public vte-with-gtk-4
(package/inherit vte
(name "vte-with-gtk4")
(arguments (substitute-keyword-arguments (package-arguments vte)
((#:configure-flags flags #~'())
#~(cons* "-Dgtk4=true" "-Dgtk3=false" #$flags))))
(propagated-inputs (modify-inputs (package-propagated-inputs vte)
(replace "gtk+" gtk)))))
(define-public vte-ng
(package
(inherit vte)