gnu: Add emacs-vui.

* gnu/packages/emacs-xyz.scm (emacs-vui): New variable.

Merges guix/guix!5633

Reviewed-by: Cayetano Santos <csantosb@inventati.org>
Change-Id: Id0b9b303460f3e0ddba5918cc344e3e340c8e35f
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
This commit is contained in:
Nicolas Graves 2026-01-10 22:41:36 +01:00 committed by Cayetano Santos
parent f53e3569f2
commit d1f290039f
No known key found for this signature in database
GPG key ID: BF5CDF4DF6BF6682

View file

@ -46346,6 +46346,28 @@ be useful when working with the bitbake files in Yocto and OpenEmbedded
projects.")
(license license:gpl3+)))
(define-public emacs-vui
(package
(name "emacs-vui")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/d12frosted/vui.el")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "05jny12ncjr7ybwab8lmshjjhcrsax67063xbfv7ri6j5kdk5r52"))))
(build-system emacs-build-system)
(native-inputs (list emacs-buttercup))
(home-page "https://github.com/d12frosted/vui.el")
(synopsis "Declarative, component-based UI library for Emacs")
(description
"This package provides React-like components with state, hooks,
reconciliation and layouts, rendered using native Emacs widgets.")
(license license:gpl3+)))
(define-public emacs-vulpea
(package
(name "emacs-vulpea")