diff options
author | User <user@domain> | 2024-11-20 10:02:22 +0900 |
---|---|---|
committer | User <user@domain> | 2024-11-20 15:25:21 +0900 |
commit | 09b071ab75d1b36ddb5b28213abd35f0c237df1e (patch) | |
tree | 91fc0b8133a6ca150391fccf8b49f812e5cd76c6 /gnu/packages/emacs-xyz.scm | |
parent | c5c7def1da89a5fc518dd96d2430fe1749041d29 (diff) | |
download | guix-09b071ab75d1b36ddb5b28213abd35f0c237df1e.tar.gz guix-09b071ab75d1b36ddb5b28213abd35f0c237df1e.zip |
gnu: Add emacs-standard-themes.
* gnu/packages/emacs-xyz.scm (emacs-standard-themes): New variable.
Change-Id: I2062fff0b0fbf8cfe942005131efdd453cf2404a
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9dd5289bc2..daac69e6c3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8176,6 +8176,27 @@ other markup language major modes.") configuration, cache, and other data.") (license license:gpl3+))) +(define-public emacs-standard-themes + (package + (name "emacs-standard-themes") + (version "2.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/standard-themes-" + version ".tar")) + (sha256 + (base32 "0x7fphd36kwg4vfwix5rq7260xl6x6cjfwsq11rj4af30sm4hlfn")))) + (build-system emacs-build-system) + (home-page "https://github.com/protesilaos/standard-themes") + (synopsis "Like the default Emacs theme but more consistent") + (description + "The standard-themes are a pair of light and dark themes for GNU Emacs. +They emulate the out-of-the-box looks of Emacs (which technically do +@emph{not} constitute a theme) while bringing to them thematic consistency, +customizability, and extensibility.") + (license license:gpl3+))) + (define-public emacs-string-inflection (package (name "emacs-string-inflection") |