mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: emacs-origami-el: Add patch to fix cl package deprecation.
* gnu/packages/emacs-xyz.scm (emacs-origami-el): [source] Add patch to fix cl package deprecation. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
7794eeac76
commit
3f58362618
1 changed files with 13 additions and 2 deletions
|
@ -28775,7 +28775,8 @@ (define-public emacs-rjsx-mode
|
|||
(define-public emacs-origami-el
|
||||
(let ((commit "1f38085c8f9af7842765ed63f7d6dfe4dab59366")
|
||||
(version "1.0")
|
||||
(revision "1"))
|
||||
(revision "1")
|
||||
(patch "1d9c4f120c027a5009b0424270e3aae59f1cb128"))
|
||||
(package
|
||||
(name "emacs-origami-el")
|
||||
(version (git-version version revision commit))
|
||||
|
@ -28788,7 +28789,17 @@ (define-public emacs-origami-el
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x"))))
|
||||
"0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x"))
|
||||
(patches
|
||||
(list
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/gregsexton/origami.el"
|
||||
"/commit/" patch ".patch"))
|
||||
(sha256
|
||||
(base32
|
||||
"0yia4dhqjzdidxd77s2ggg6mmj05jbsnwc35myzzhzh1zbq8mrfy")))))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
(list emacs-dash emacs-s))
|
||||
|
|
Loading…
Reference in a new issue