diff options
| author | Amy Grinn <grinn.amy@tuta.com> | 2025-03-25 18:17:25 +0100 |
|---|---|---|
| committer | David Thompson <dthompson2@worcester.edu> | 2025-04-03 11:01:00 -0400 |
| commit | dfb5bafaae3f3160aa0b21c9bd6686cd8bb426ca (patch) | |
| tree | 2b50378681d4f82af3430c5b8730d6440bf2b439 /gnu/packages | |
| parent | 474095ff508806e5534b1dc54bbbf5f1eb91e237 (diff) | |
gnu: Add emacs-boxy.
* gnu/packages/emacs-xyz.scm (emacs-boxy): New variable.
Change-Id: Iecfa5dc792298c1ed91c84cda327d966e271e1cb
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ba6afd72bb1..7bf2d5dcee5 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -156,6 +156,7 @@ ;;; Copyright © 2025 Skylar Hill <stellarskylark@posteo.net> ;;; Copyright © 2025 Cayetano Santos <csantosb@inventati.org> ;;; Copyright © 2025 Lee Thompson <lee.p.thomp@gmail.com> +;;; Copyright @ 2025 Amy Pillow <amypillow@lavache.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -39202,6 +39203,24 @@ text, such a marking style might be used to show externally included text or example code.") (license license:gpl3+))) +(define-public emacs-boxy + (package + (name "emacs-boxy") + (version "2.0.0") + (source (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/boxy-" + version ".tar")) + (sha256 + (base32 "1vfgwgk3vzzp2cy7n0qwhn7hzjxbp9vzxp1al1pkynv9hfs503gb")))) + (build-system emacs-build-system) + (home-page "https://gitlab.com/grinn.amy/boxy") + (synopsis "A boxy layout framework for Emacs") + (description "@code{boxy} provides an interface to create a 3D +representation of boxes. Other packages can use this library to create +expandable menus for interacting with hierarchical data.") + (license license:gpl3+))) + (define-public emacs-buffer-env (package (name "emacs-buffer-env") |
