1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add emacs-standard-themes.

* gnu/packages/emacs-xyz.scm (emacs-standard-themes): New variable.

Change-Id: I2062fff0b0fbf8cfe942005131efdd453cf2404a
This commit is contained in:
User 2024-11-20 10:02:22 +09:00
parent c5c7def1da
commit 09b071ab75
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -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")