gnu: Add vte-with-gtk-4.

* gnu/packages/gnome.scm (vte-with-gtk-4): New variable.
This commit is contained in:
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

View file

@ -4634,6 +4634,15 @@ (define-public vte
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)