about summary refs log tree commit diff
path: root/pkgs/larbs-mail
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-09-14 22:31:18 +0200
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-09-14 22:31:18 +0200
commit7679ff60d5ac7face30a8e32c6f3556cfbc9e604 (patch)
tree86d6b82be05d8ab8f60ccf8652feaa6d42faa0ae /pkgs/larbs-mail
parent554a3d86c983dd1d0f5680c3597e53e37edfe36d (diff)
downloadpnpkgs-7679ff60d5ac7face30a8e32c6f3556cfbc9e604.tar.gz
pnpkgs-7679ff60d5ac7face30a8e32c6f3556cfbc9e604.zip
Add larbs-mail
Diffstat (limited to 'pkgs/larbs-mail')
-rw-r--r--pkgs/larbs-mail/default.nix23
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;
+  };
+}