diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-03-15 23:33:25 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-03-16 00:10:55 +0100 |
commit | 2232666e19804adc477332f9cbe09b1f6f6e84db (patch) | |
tree | 5e51421b1c49d53f109d35a1e3f56110045ad571 | |
parent | 9b12dd9ddaf71afe6b37e92dc5715feb99d5a9c6 (diff) | |
download | guix-2232666e19804adc477332f9cbe09b1f6f6e84db.tar.gz |
gnu: emacs-ef-themes: Update to 0.11.0.
* gnu/packages/emacs-xyz.scm (emacs-ef-themes): Update to 0.11.0.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 41 |
1 files changed, 19 insertions, 22 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e8f0bf8d12..0b7aa8a752 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5864,30 +5864,27 @@ intended to be.") (license license:gpl3+))) (define-public emacs-ef-themes - ;; XXX: Upstream did not tag last release. The commit below matches version - ;; bump. - (let ((commit "35201e49e8c3f5d1a2d6c17cb1697a9e18529a9a")) - (package - (name "emacs-ef-themes") - (version "0.10.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://git.sr.ht/~protesilaos/ef-themes") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0c3gly6d5037dvvznf1mzihrfrcrrjmnsd2dda5k4frfyrc25rmn")))) - (build-system emacs-build-system) - (home-page "https://git.sr.ht/~protesilaos/ef-themes") - (synopsis "Colorful and legible themes") - (description - "The Ef themes are a collection of light and dark themes for GNU Emacs + (package + (name "emacs-ef-themes") + (version "0.11.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~protesilaos/ef-themes") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1s03qdwb6wb1ddd2gmv4casdnr4mgxmifyhbzhvjdz7v50sdgq7k")))) + (build-system emacs-build-system) + (home-page "https://git.sr.ht/~protesilaos/ef-themes") + (synopsis "Colorful and legible themes") + (description + "The Ef themes are a collection of light and dark themes for GNU Emacs whose goal is to provide colorful yet legible options for users who want something with a bit more flair than the Modus themes.") - (license license:gpl3+)))) + (license license:gpl3+))) (define-public emacs-espuds (package |