gnu: Add emacs-boxy.

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

Change-Id: Iecfa5dc792298c1ed91c84cda327d966e271e1cb
This commit is contained in:
Amy Grinn 2025-03-25 18:17:25 +01:00 committed by David Thompson
parent 474095ff50
commit dfb5bafaae
No known key found for this signature in database
GPG key ID: 8328C7470FF1D807

View file

@ -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")