mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-origami-el: Fix invalid-face-box.
This fixes face errors in the emacs-keystore-mode dependent package on emacs@30. * gnu/packages/emacs-xyz.scm (emacs-origami-el) [source] <snippet>: Adapt to emacs@30 face API (:color unspecified has to be changed to :color nil). Change-Id: I2d9c2baf8962a170ac1e7d4f6d5b7283e9ebcfe5 Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
55f47dee04
commit
e08767efdd
1 changed files with 10 additions and 12 deletions
|
@ -35654,18 +35654,16 @@ support JSX syntax.")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x"))
|
||||||
"0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x"))
|
(modules '((guix build utils)))
|
||||||
(patches
|
(snippet #~(substitute* (find-files "." "\\.el$")
|
||||||
(list
|
(("\\(require 'cl\\)")
|
||||||
(origin
|
"(require 'cl-lib)")
|
||||||
(method url-fetch)
|
(("(destructuring-bind|remove-if)" all)
|
||||||
(uri (string-append
|
(string-append "cl-" all))
|
||||||
"https://github.com/gregsexton/origami.el"
|
(("\\(face-attribute 'highlight :background\\)") "\
|
||||||
"/commit/" patch ".patch"))
|
(let ((color (face-attribute 'highlight :background)))
|
||||||
(sha256
|
(and color (not (eq color 'unspecified)) color))")))))
|
||||||
(base32
|
|
||||||
"0yia4dhqjzdidxd77s2ggg6mmj05jbsnwc35myzzhzh1zbq8mrfy")))))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-dash emacs-s))
|
(list emacs-dash emacs-s))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue