summaryrefslogtreecommitdiff
path: root/siguix/packages/emacs-gruvbox-theme-mod.scm
blob: 185af5a79eb2e8edbe4f5f2e60cc18f8430ab570 (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
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2021, 2022 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 "921bfd7a2f5174b68682b04e6010b156bbfe6c70")
        (revision "5")
        (version "1.28.0"))
    (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
                  "12s9879spz1d5a90x2mp85crxkxz42jq20qk5vkkka1rqfmfmlk1")))))))