1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add emacs-font-utils.

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

Change-Id: Ia9f61f07dc1d2d6955dcda46d786d6c75f971539
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Cayetano Santos 2025-03-14 14:18:45 +01:00 committed by Ian Eure
parent b7bf6bad33
commit 80826c6e03
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -5950,6 +5950,31 @@ integration with Edebug allows stepping into Lisp expressions that are part of
the Font Lock keywords.")
(license license:gpl3+)))
(define-public emacs-font-utils
;; latest release from 10 years ago
(let ((commit "abc572eb0dc30a26584c0058c3fe6c7273a10003")
(revision "0"))
(package
(name "emacs-font-utils")
(version (git-version "0.7.8" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rolandwalker/font-utils/")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0hx3k2zx2kdavivr1b957jq7kcwk301yzw77aprxzbs7jz73a35x"))))
(build-system emacs-build-system)
(home-page "https://github.com/rolandwalker/font-utils/")
(synopsis "Utility functions for working with fonts in Emacs")
(description
"@code{Font-utils} is a collection of functions for working with fonts. This
library has no user-level interface, it is only useful for programming in Emacs
Lisp.")
(license license:bsd-2))))
(define-public emacs-fontaine
(package
(name "emacs-fontaine")