diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-10 22:41:36 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:25:55 +0100 |
| commit | 9d33dce9ca04142d6b68fa31d2b08bcfe00641fd (patch) | |
| tree | 3c9d78531d25336d555a126c855930ad2d1d76c8 /gnu | |
| parent | b2900166d6736d455b1673a35c640ccdcc9286da (diff) | |
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>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 409c4d2554..352e88a428 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -46427,6 +46427,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") |
