From 09b071ab75d1b36ddb5b28213abd35f0c237df1e Mon Sep 17 00:00:00 2001 From: User Date: Wed, 20 Nov 2024 10:02:22 +0900 Subject: [PATCH] gnu: Add emacs-standard-themes. * gnu/packages/emacs-xyz.scm (emacs-standard-themes): New variable. Change-Id: I2062fff0b0fbf8cfe942005131efdd453cf2404a --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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")