diff options
| author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-07-11 11:18:02 +0200 |
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-07-11 11:18:02 +0200 |
| commit | 157139612a34660679f827996f781a605cb1bed5 (patch) | |
| tree | 330a47c3c5c6a66b6a45bbedd7deedf6b178fa4f /gnu | |
| parent | 7093824be088760ac2be1107582de419d03e0351 (diff) | |
gnu: emacs-doom-themes: Update to 2.3.0.
* gnu/packages/emacs-xyz.scm (emacs-doom-themes): Update to 2.3.0.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 77 |
1 files changed, 37 insertions, 40 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3da27434daf..2dab2f40c64 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm | |||
| @@ -28012,47 +28012,44 @@ contrast and few colors.") | |||
| 28012 | (license license:gpl3+)))) | 28012 | (license license:gpl3+)))) |
| 28013 | 28013 | ||
| 28014 | (define-public emacs-doom-themes | 28014 | (define-public emacs-doom-themes |
| 28015 | (let ((commit "e9bdd137116fa2037ed60037b8421cf68c64888d") | 28015 | (package |
| 28016 | (revision "6") | 28016 | (name "emacs-doom-themes") |
| 28017 | (version "2.1.6")) | 28017 | (version "2.3.0") |
| 28018 | (package | 28018 | (source (origin |
| 28019 | (name "emacs-doom-themes") | 28019 | (method git-fetch) |
| 28020 | (version (git-version version revision commit)) | 28020 | (uri (git-reference |
| 28021 | (source (origin | 28021 | (url "https://github.com/hlissner/emacs-doom-themes") |
| 28022 | (method git-fetch) | 28022 | (commit (string-append "v" version)))) |
| 28023 | (uri (git-reference | 28023 | (file-name (git-file-name name version)) |
| 28024 | (url "https://github.com/hlissner/emacs-doom-themes") | 28024 | (sha256 |
| 28025 | (commit commit))) | 28025 | (base32 "120pcas0l1m6w551qxfcl2fx0aysjqp91nn47zdxrr8rs01654wr")))) |
| 28026 | (file-name (git-file-name name version)) | 28026 | (build-system emacs-build-system) |
| 28027 | (sha256 | 28027 | (native-inputs |
| 28028 | (base32 "178ri980kwkndb73dawhsfr1dkl6xjdb451z0iar9ghk8z0r0wpg")))) | 28028 | (list emacs-ert-runner)) |
| 28029 | (build-system emacs-build-system) | 28029 | (arguments |
| 28030 | (native-inputs | 28030 | `(#:tests? #t |
| 28031 | (list emacs-ert-runner)) | 28031 | #:test-command '("ert-runner") |
| 28032 | (arguments | 28032 | #:modules ((guix build emacs-build-system) |
| 28033 | `(#:tests? #t | 28033 | (guix build utils) |
| 28034 | #:test-command '("ert-runner") | 28034 | (guix build emacs-utils) |
| 28035 | #:modules ((guix build emacs-build-system) | 28035 | (srfi srfi-1)) |
| 28036 | (guix build utils) | 28036 | #:phases |
| 28037 | (guix build emacs-utils) | 28037 | (modify-phases %standard-phases |
| 28038 | (srfi srfi-1)) | 28038 | (add-after 'unpack 'move-themes |
| 28039 | #:phases | 28039 | (lambda _ |
| 28040 | (modify-phases %standard-phases | 28040 | ;; Move the source files to the top level, which is in the |
| 28041 | (add-after 'unpack 'move-themes | 28041 | ;; EMACSLOADPATH. |
| 28042 | (lambda _ | 28042 | (for-each (lambda (f) |
| 28043 | ;; Move the source files to the top level, which is in the | 28043 | (rename-file f (basename f))) |
| 28044 | ;; EMACSLOADPATH. | 28044 | (append |
| 28045 | (for-each (lambda (f) | 28045 | (find-files "./themes" ".*\\.el$") |
| 28046 | (rename-file f (basename f))) | 28046 | (find-files "./extensions" ".*\\.el$"))) |
| 28047 | (append | 28047 | #t))))) |
| 28048 | (find-files "./themes" ".*\\.el$") | 28048 | (synopsis "Wide collection of color themes for Emacs") |
| 28049 | (find-files "./extensions" ".*\\.el$"))) | 28049 | (description "Emacs-doom-themes contains numerous popular color themes for |
| 28050 | #t))))) | ||
| 28051 | (synopsis "Wide collection of color themes for Emacs") | ||
| 28052 | (description "Emacs-doom-themes contains numerous popular color themes for | ||
| 28053 | Emacs that integrate with major modes like Org-mode.") | 28050 | Emacs that integrate with major modes like Org-mode.") |
| 28054 | (home-page "https://github.com/hlissner/emacs-doom-themes") | 28051 | (home-page "https://github.com/hlissner/emacs-doom-themes") |
| 28055 | (license license:expat)))) | 28052 | (license license:expat))) |
| 28056 | 28053 | ||
| 28057 | (define-public emacs-modus-themes | 28054 | (define-public emacs-modus-themes |
| 28058 | (package | 28055 | (package |
