about summary refs log tree commit diff
path: root/pkgs/larbs-mail/default.nix
blob: ef4109268421585cf966b7029e55722e3b2e723c (plain)
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
{ stdenv, callPackage, buildEnv, isync, pass, msmtp, notmuch, libnotify }:
with stdenv.lib;

let
  mutt-wizard = callPackage ./mutt-wizard.nix { };
  neomutt = callPackage ./neomutt_wrapped.nix { };
in
buildEnv {
  name = "larbs-mail";

  paths = [
    neomutt
    isync
    pass
    msmtp
    notmuch
    libnotify
    mutt-wizard
  ];

  meta = {
    homepage = "https://github.com/LukeSmithXYZ/mutt-wizard";
    description = "Neomutt + Mutt-Wizard: A system for automatically configuring mutt and isync with a simple interface and safe passwords";
    license = licenses.gpl3;
    platforms = platforms.linux;
  };
}