diff options
author | Rodion Goritskov <rodion.goritskov@gmail.com> | 2023-12-09 22:39:26 +0400 |
---|---|---|
committer | Rodion Goritskov <rodion.goritskov@gmail.com> | 2023-12-09 22:39:26 +0400 |
commit | 9d284d9fe31cc32cda8dd429dddd6fb3e01a6d96 (patch) | |
tree | c3b81d66ac56d5471cd608e7cac4794a4228918b /rodion | |
parent | 8fe75f080e8a18a924117ea3dc4e2f632667558c (diff) |
Add mood-one-theme package for emacs
Diffstat (limited to 'rodion')
-rw-r--r-- | rodion/packages/emacs.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/rodion/packages/emacs.scm b/rodion/packages/emacs.scm new file mode 100644 index 0000000..e207eb2 --- /dev/null +++ b/rodion/packages/emacs.scm @@ -0,0 +1,28 @@ +(define-module (rodion packages emacs) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix git-download) + #:use-module (guix build-system emacs)) + +(define-public emacs-mood-one-theme + (package + (name "emacs-mood-one-theme") + (version "1.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/jessieh/mood-one-theme") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0scraadlync08zsn84f66jb1s6jch3pr6asgvfm9cms8fsnfmrbs")))) + (build-system emacs-build-system) + (arguments + (list + #:tests? #false)) + (home-page "https://gitlab.com/jessieh/mood-one-theme") + (synopsis "A dark Emacs color scheme inspired by the Doom One theme") + (description + "mood-one-theme is a dark color scheme that aims to replicate some of the features of the Doom One theme.") + (license license:unlicense))) |