1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

gnu: emacs-show-font: Update to 0.3.0.

* gnu/packages/emacs-xyz.scm (emacs-show-font): Update to 0.3.0.
[arguments] <#:phases> {makeinfo}: New phase.

Change-Id: If0bdc71417e79892cb182b1364bb4f5eb050a17e
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Cayetano Santos 2025-05-30 23:22:51 +02:00 committed by Liliana Marie Prikler
parent b40eced515
commit a15890d6f6
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -1536,7 +1536,7 @@ is based off of Slim mode.")
(define-public emacs-show-font
(package
(name "emacs-show-font")
(version "0.2.0")
(version "0.3.0")
(source
(origin
(method git-fetch)
@ -1545,8 +1545,21 @@ is based off of Slim mode.")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0bvd1jw5x623zh0ga8hvq7mdmijlvlwk478adlvg1k1a6s371wss"))))
(base32 "0nn7yqc0zsl0kxk17k0hd9dxd65lslj24fd83fych1jla4hd93jc"))))
(build-system emacs-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'install 'makeinfo
(lambda _
(invoke "emacs"
"--batch"
"--eval=(require 'ox-texinfo)"
"--eval=(find-file \"README.org\")"
"--eval=(org-texinfo-export-to-info)"))))))
(native-inputs
(list texinfo))
(home-page "https://github.com/protesilaos/show-font")
(synopsis "Show font features in a buffer")
(description