gnu: emacs-modus-operandi-theme: Update to 0.13.0.
* gnu/packages/emacs-xyz.scm (emacs-modus-operandi-theme): Update to 0.13.0. [source]: Use GitHub instead of GNU ELPA, as ELPA is out of date. [arguments]: Add phase to remove "modus-vivendi-theme.el". Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
db1ccf03b7
commit
e62ffc774e
1 changed files with 14 additions and 5 deletions
|
@ -22877,15 +22877,24 @@ Emacs that integrate with major modes like Org-mode.")
|
||||||
(define-public emacs-modus-operandi-theme
|
(define-public emacs-modus-operandi-theme
|
||||||
(package
|
(package
|
||||||
(name "emacs-modus-operandi-theme")
|
(name "emacs-modus-operandi-theme")
|
||||||
(version "0.12.0")
|
(version "0.13.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://elpa.gnu.org/packages/"
|
(uri (git-reference
|
||||||
"modus-operandi-theme-" version ".el"))
|
(url "https://gitlab.com/protesilaos/modus-themes")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1mllyysn701qfnglxs7n2f6mrzrz55v9hcwspvafc6fl2blr393y"))))
|
(base32 "0i6n3pzrmlgabsijy6z0hhs71q7g99yagwr2m33lr30skqc9rvdn"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'remove-other-theme
|
||||||
|
(lambda _
|
||||||
|
(delete-file "modus-vivendi-theme.el")
|
||||||
|
#t)))))
|
||||||
(home-page "https://gitlab.com/protesilaos/modus-themes")
|
(home-page "https://gitlab.com/protesilaos/modus-themes")
|
||||||
(synopsis "Accessible light theme (WCAG AAA)")
|
(synopsis "Accessible light theme (WCAG AAA)")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue