diff options
author | Cayetano Santos <csantosb@inventati.org> | 2024-10-22 12:23:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-10-24 15:10:42 +0200 |
commit | 85e61de5392eac0c08350a05e0651f75c541f505 (patch) | |
tree | 627fbb9698d8326a572ca85fb96f240665037c5b /gnu/packages | |
parent | 77b73b61fc214a671c274d8cc77d123e947a48be (diff) | |
download | guix-85e61de5392eac0c08350a05e0651f75c541f505.tar guix-85e61de5392eac0c08350a05e0651f75c541f505.tar.gz |
gnu: Add emacs-show-font.
* gnu/packages/emacs-xyz.scm (emacs-show-font): New variable.
Change-Id: Icda53be5afa7960ca61c48a6ea0825f0d254cf9f
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ca77975ac7..b65c82c695 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1305,6 +1305,29 @@ out of the box.") is based off of Slim mode.") (license license:gpl3+))) +(define-public emacs-show-font + (package + (name "emacs-show-font") + (version "0.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/protesilaos/show-font") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kbkbvqhdqpsmci0756w2j7igxdj0qfzy823mvc5lb6yj8gwq9dl")))) + (build-system emacs-build-system) + (home-page "https://github.com/protesilaos/show-font") + (synopsis "Show font features in a buffer") + (description + "Show Font lets you preview a font inside of Emacs. It does so in three +ways: prompt for a font on the system and display it in a buffer, list all +known fonts in a buffer with a short preview for each, and provide a major +mode to preview a font whose file is among the installed ones.") + (license license:gpl3+))) + (define-public emacs-sed-mode (package (name "emacs-sed-mode") |