summaryrefslogtreecommitdiff
path: root/siguix/packages/emacs-gruvbox-theme-mod.scm
blob: 06a224630cdf3f742fa7f8ad16775742e3c36d58 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2021--2023 Simon Streit <simon@netpanic.org>
;;;
;;; This file is NOT part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (siguix packages emacs-gruvbox-theme-mod)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix build-system emacs)
  #:use-module (gnu packages)
  #:use-module (gnu packages emacs)
  #:use-module (gnu packages emacs-xyz))

(define-public emacs-gruvbox-theme-mod
  (let ((commit "456060ed1b831c1edc6f3486be9a54247a08e39f")
        (revision "0")
        (version "1.30.1"))
    (package/inherit emacs-gruvbox-theme
      (name "emacs-gruvbox-theme-mod")
      (version (git-version
                version revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/greduan/emacs-theme-gruvbox")
               (commit commit)))
         (file-name (git-file-name name commit))
         (sha256
          (base32
           "0dnmhfgk2lajccq8q5vc931sw9jbdg0qslm6rmg361rr77y306rd")))))))