aboutsummaryrefslogtreecommitdiff
path: root/qkguix/packages/emacs-xyz.scm
blob: 3feadb02d4ca62ed03bf2d354dc0c514b6341739 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
;;; QKGuix --- Functional package management for QKGuix
;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
;;;
;;; This file is part of QKGuix.
;;;
;;; QKGuix 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.
;;;
;;; QKGuix 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 QKGuix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (qkguix packages emacs-xyz)
  #:use-module (guix packages)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix git-download)
  #:use-module (guix build-system emacs))

(define-public emacs-japanese-holidays
  (let ((commit "45e70a6eaf4a555fadc58ab731d522a037a81997")
        (revision "0"))
    (package
      (name "emacs-japanese-holidays")
      (version (git-version "1.190317" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/emacs-jp/japanese-holidays.git")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "041rww8ngvjmgkiviqwq6wci8wgh4bs0wjjc8v8lqpwqhbzf65jy"))))
      (build-system emacs-build-system)
      (home-page "https://github.com/emacs-jp/japanese-holidays.git")
      (synopsis "Calendar functions for the Japanese calendar")
      (description
       "This utility defines Japanese holiday for calendar function.
This also enables to display weekends or any weekday with preferred face.")
      (license license:gpl2+))))

(define-public emacs-twittering-mode
  (package
    (name "emacs-twittering-mode")
    (version "3.1.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/hayamiz/twittering-mode")
             (commit "57c94a3264bd8735e20120e868ded2d19418521a")))
       (file-name (git-file-name name version))
       (sha256
        (base32 "01psxhvvyn29pb39ssknvn7j9z6gd2gi16yjvwn2rd2862045ddd"))))
    (build-system emacs-build-system)
    (home-page "http://twmode.sourceforge.net")
    (synopsis "An Emacs major mode for Twitter")
    (description
     "Twittering-mode is an Emacs major mode for Twitter.
You can check timelines, tweet, mark posts as favorites and so on
with Emacs.")
    (license license:gpl2+)))

(define-public emacs-twittering-mode-git
  (let ((commit "114891e8fdb4f06b1326a6cf795e49c205cf9e29")
        (revision "0"))
    (package
      (inherit emacs-twittering-mode)
      (name "emacs-twittering-mode-git")
      (version (git-version "20181121" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/hayamiz/twittering-mode.git")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "1w1p5pg3ambixhc5l7490wf5qasw3xv9qg6f0xhfsnqk44fp70ia")))))))