summaryrefslogtreecommitdiff
path: root/rodion/packages/emacs.scm
blob: e207eb217d27a71e86c11c04d2a21660e3099fcf (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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)))