blob: 47ac9e21a7af625de9a8091f158f8e645e23e6ea (
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
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
|
(define-module (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+))))
|