diff options
Diffstat (limited to 'pkgs/larbs-mail/default.nix')
-rw-r--r-- | pkgs/larbs-mail/default.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/larbs-mail/default.nix b/pkgs/larbs-mail/default.nix new file mode 100644 index 0000000..4f5b45e --- /dev/null +++ b/pkgs/larbs-mail/default.nix @@ -0,0 +1,23 @@ +{ stdenv, callPackage, buildEnv, neomutt, isync, pass, msmtp, notmuch, libnotify }: +with stdenv.lib; +let + mutt-wizard = callPackage ../mutt-wizard { }; +in +buildEnv { + name = "larbs-mail"; + paths = [ + neomutt + isync + pass + msmtp + notmuch + libnotify + ]; + + meta = { + homepage = "https://github.com/LukeSmithXYZ/mutt-wizard"; + description = "A system for automatically configuring mutt and isync with a simple interface and safe passwords"; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} |