blob: edd6f447f0d86bbc4186c941ab5c24e37db5c8ca (
plain) (
blame)
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
|
(define-module (mbsync-notify)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix build-system copy)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (gnu packages mail)
#:use-module (gnu packages gnome)
)
(define-public mbsync-notify
(package
(name "mbsync-notify")
(version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://git.techchud.xyz/mbsync-notify")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1d3xcr8ny8iihqr1da23sicn8wn5x0pxx549by6r53yw3f6shbhj"))))
(build-system copy-build-system)
(inputs
(list
isync
libnotify
))
(arguments
'(#:install-plan '(("mbsync-notify" "/bin/mbsync-notify"))))
(synopsis "Adds notifications to mbsync")
(description
"Shell script that gets all emails, then notifies you of new ones.")
(home-page "https://git.techchud.xyz/mbsync-notify/")
(license agpl3)))
|