summaryrefslogtreecommitdiffstats
path: root/hecate/packages/emacs.scm
blob: 89a57468d43dfdb3186a25e289f4216b1a88358b (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
(define-module (hecate packages emacs)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix cvs-download)
  #:use-module (guix download)
  #:use-module (guix deprecation)
  #:use-module (guix bzr-download)
  #:use-module (guix gexp)
  #:use-module (guix i18n)
  #:use-module (guix git-download)
  #:use-module (guix hg-download)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system copy)
  #:use-module (guix build-system emacs)
  #:use-module (guix build-system perl)
  #:use-module (guix build-system trivial)
  #:use-module (gnu packages)
  #:use-module (gnu packages emacs-xyz)
  #:use-module (gnu packages emacs)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages video)
  #:use-module (gnu packages tor)
  #:use-module (ice-9 match))

(define-public emacs-eshell-git-prompt
  (let ((commit "dfcf9cd93add6763e2c46603b0323274d4c22906"))
    (package
      (name "emacs-eshell-git-prompt")
      (version "0.1.3")
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/xuchunyang/eshell-git-prompt")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "13b7nr0819pgzyvh0szi0zjyazgpxmsbqcz65cccyhh2pq48zb7j"))))
      (build-system emacs-build-system)
      (propagated-inputs
       (list emacs-dash))
      (home-page "https://github.com/xuchunyang/eshell-git-prompt")
      (synopsis "Themes for Emacs Shell (Eshell) prompt.")
      (description "This package provides a variety of themes for Emacs Shell (Eshell) prompt.")
      (license license:gpl3+))))

(define-public emacs-pcmpl-tailscale
  (let ((commit "acd6bce54af506b0450cf6aa1068f63d4e25c8ce"))
    (package
      (name "emacs-pcmpl-tailscale")
      (version "0.0.1")
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://git.thanosapollo.org/pcmpl-tailscale")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "0lk808ahy8ckg2fr2pqk3p5if81nqrwsajrgqafv9hgn8w4l1x0p"))))
      (build-system emacs-build-system)
      (home-page "https://git.thanosapollo.org/pcmpl-tailscale")
      (synopsis "Enhanced shell completions for tailscale")
      (description "This package provides enhanced completions for the
tailscale command and it's subcommands.")
      (license license:gpl3+))))


(define-public emacs-0x0
  (let ((commit "04f95142b25d8bb701f239539176df6617dcd982")
        (revision "0"))
    (package
      (name "emacs-0x0")
      (version (git-version "1.0.1" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://git.sr.ht/~willvaughn/emacs-0x0")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "0vj9vrfkgm7plp5mvq22fm9sln11j9763g3wd2w6c82rlsk6dhva"))))
      (build-system emacs-build-system)
      (home-page "https://github.com/emacsorphanage/ac-ispell")
      (synopsis "Integration with https://0x0.st, envs.sh, ttm.sh, and self-hosted services.")
      (description
       "0x0 is an pastebin integration tool. Functionality includes uploading
the current buffer, a file on your disk, or a string from the kill ring.")
      (license license:gpl3+))))

(define-public emacs-gnosis
  (let ((commit "4cd3ce6993a9b97b698537c428addf7387b13a3f")
        (revision "0"))
    (package
      (name "emacs-gnosis")
      (version (git-version "0.3.2" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://git.thanosapollo.org/gnosis")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "0klggh9vx994i962m5a86ggxcr87vh5pwvm0qhdapwsag2ma08pk"))))
      (build-system emacs-build-system)
      (propagated-inputs (list emacs-compat emacs-emacsql))
      (home-page "https://github.com/emacsorphanage/ac-ispell")
      (synopsis "Spaced repetition system for GNU Emacs.")
      (description
       "Gnosis is a spaced repetition system for note-taking and self-testing
where notes are formatted as Question/Answer/Explanation. Notes are reviewed
at spaced intervals based on the success or failure in recalling the answer to
each question.")
      (license license:gpl3+))))