diff options
author | Matthias Beyer <mail@beyermatthias.de> | 2020-09-11 18:58:10 +0200 |
---|---|---|
committer | Matthias Beyer <mail@beyermatthias.de> | 2021-02-01 15:28:32 +0100 |
commit | c6a975339235fe75c8202817583a62de561a8cdd (patch) | |
tree | 7c8121a0580ed4e8c00cc847d77949eac3081d3e | |
parent | 26187c65b637c2ee2a27674a5585af8106878736 (diff) |
WIP: notifymuch: init at 2020-09-11add-notifymuch
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r-- | pkgs/tools/misc/notifymuch/default.nix | 24 | ||||
-rw-r--r-- | pkgs/top-level/python-packages.nix | 2 |
2 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/misc/notifymuch/default.nix b/pkgs/tools/misc/notifymuch/default.nix new file mode 100644 index 000000000000..0a2d46cd3270 --- /dev/null +++ b/pkgs/tools/misc/notifymuch/default.nix @@ -0,0 +1,24 @@ +{ lib, python3Packages, fetchFromGitHub, glibcLocales }: + +with python3Packages; +buildPythonApplication rec { + pname = "notifymuch"; + version = "2020-09-11"; + + src = fetchFromGitHub { + owner = "kspi"; + repo = "notifymuch"; + rev = "9d4aaf54599282ce80643b38195ff501120807f0"; + sha256 = "1lssr7iv43mp5v6nzrfbqlfzx8jcc7m636wlfyhhnd8ydd39n6k4"; + }; + + checkInputs = [ pygobject3 notmuch notify2 ]; + + meta = { + description = "Display desktop notifications for unread mail in notmuch database"; + homepage = "https://github.com/kspi/notifymuch"; + # license = # no license in repository + }; +} + + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a7d370ff4561..1e5c99ea78ec 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4438,6 +4438,8 @@ in { notify-py = callPackage ../development/python-modules/notify-py { }; + notifymuch = callPackage ../tools/misc/notifymuch { }; + notmuch = callPackage ../development/python-modules/notmuch { inherit (pkgs) notmuch; }; notmuch2 = callPackage ../development/python-modules/notmuch/2.nix { inherit (pkgs) notmuch; }; |