diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:01 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:01 -0500 |
commit | 5a013865b3a973628eff8dd035769baee5a1f46d (patch) | |
tree | 8182d1acc6329b71dab7d423a2240298b80f2eae | |
parent | 0bd23bc81554597d807b189358dfcb871ab05cfa (diff) | |
download | guix-techchud-5a013865b3a973628eff8dd035769baee5a1f46d.tar.gz guix-techchud-5a013865b3a973628eff8dd035769baee5a1f46d.tar.bz2 guix-techchud-5a013865b3a973628eff8dd035769baee5a1f46d.zip |
mbsync-notify added
-rw-r--r-- | mbsync-notify.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/mbsync-notify.scm b/mbsync-notify.scm new file mode 100644 index 0000000..edd6f44 --- /dev/null +++ b/mbsync-notify.scm @@ -0,0 +1,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))) |