me
/
guix
Archived
1
0
Fork 0

gnu: emacs-doom-themes: Update to 2.3.0.

* gnu/packages/emacs-xyz.scm (emacs-doom-themes): Update to 2.3.0.
master
Nicolas Goaziou 2022-07-11 11:18:02 +02:00
parent 7093824be0
commit 157139612a
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 37 additions and 40 deletions

View File

@ -28012,47 +28012,44 @@ contrast and few colors.")
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-doom-themes (define-public emacs-doom-themes
(let ((commit "e9bdd137116fa2037ed60037b8421cf68c64888d") (package
(revision "6") (name "emacs-doom-themes")
(version "2.1.6")) (version "2.3.0")
(package (source (origin
(name "emacs-doom-themes") (method git-fetch)
(version (git-version version revision commit)) (uri (git-reference
(source (origin (url "https://github.com/hlissner/emacs-doom-themes")
(method git-fetch) (commit (string-append "v" version))))
(uri (git-reference (file-name (git-file-name name version))
(url "https://github.com/hlissner/emacs-doom-themes") (sha256
(commit commit))) (base32 "120pcas0l1m6w551qxfcl2fx0aysjqp91nn47zdxrr8rs01654wr"))))
(file-name (git-file-name name version)) (build-system emacs-build-system)
(sha256 (native-inputs
(base32 "178ri980kwkndb73dawhsfr1dkl6xjdb451z0iar9ghk8z0r0wpg")))) (list emacs-ert-runner))
(build-system emacs-build-system) (arguments
(native-inputs `(#:tests? #t
(list emacs-ert-runner)) #:test-command '("ert-runner")
(arguments #:modules ((guix build emacs-build-system)
`(#:tests? #t (guix build utils)
#:test-command '("ert-runner") (guix build emacs-utils)
#:modules ((guix build emacs-build-system) (srfi srfi-1))
(guix build utils) #:phases
(guix build emacs-utils) (modify-phases %standard-phases
(srfi srfi-1)) (add-after 'unpack 'move-themes
#:phases (lambda _
(modify-phases %standard-phases ;; Move the source files to the top level, which is in the
(add-after 'unpack 'move-themes ;; EMACSLOADPATH.
(lambda _ (for-each (lambda (f)
;; Move the source files to the top level, which is in the (rename-file f (basename f)))
;; EMACSLOADPATH. (append
(for-each (lambda (f) (find-files "./themes" ".*\\.el$")
(rename-file f (basename f))) (find-files "./extensions" ".*\\.el$")))
(append #t)))))
(find-files "./themes" ".*\\.el$") (synopsis "Wide collection of color themes for Emacs")
(find-files "./extensions" ".*\\.el$"))) (description "Emacs-doom-themes contains numerous popular color themes for
#t)))))
(synopsis "Wide collection of color themes for Emacs")
(description "Emacs-doom-themes contains numerous popular color themes for
Emacs that integrate with major modes like Org-mode.") Emacs that integrate with major modes like Org-mode.")
(home-page "https://github.com/hlissner/emacs-doom-themes") (home-page "https://github.com/hlissner/emacs-doom-themes")
(license license:expat)))) (license license:expat)))
(define-public emacs-modus-themes (define-public emacs-modus-themes
(package (package