diff options
author | Anderson Torres <anderson.torres.8519@gmail.com> | 2025-07-05 13:59:38 -0300 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-07-24 15:42:43 +0800 |
commit | 9b04ccd15e26a79603d1d2fc400d76c9d64ed59d (patch) | |
tree | 07d0642c5bf3ce3346035b3aed3b0ad5e66a601a | |
parent | 0d564c68562ac7dc31476b2028c198ce298ee24c (diff) |
gnu: Add emacs-grid.
* gnu/packages/emacs-xyz.scm (emacs-grid): New variable.
Change-Id: If8805e04069e9b63fb6e99bc550dd9c079454d7c
Signed-off-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 748df992ad..4e12be1bdd 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -29930,6 +29930,35 @@ sections for bookmarks, Projectile projects, Org Agenda and more.") (description "Lightweight yet very flexible startup screen for Emacs.") (license license:gpl3+))) +(define-public emacs-grid + ;; No tags; use latest commit + (let ((commit "b9f6022539e1082c9117c3de137796a905ccc66d") + (revision "0")) + (package + (name "emacs-grid") + ;; Taken from source code + (version (git-version "0.1-pre" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ichernyshovvv/grid.el") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "075rb6nvazh8jkz5clykn3hrv874mffmdzqlz6iqp127vpx3cpgx")))) + (build-system emacs-build-system) + (arguments + ;; No tests + (list #:tests? #f)) + (synopsis "Library for putting text into boxes and align these boxes") + (description + "This library allows you to put text data into boxes and align them +horizontally, applying margin, padding, borders.") + (home-page "https://github.com/ichernyshovvv/grid.el") + (license license:gpl3+)))) + (define-public emacs-slime-company (package (name "emacs-slime-company") |