blob: d5b9bb1caaa5e1606f8c314b91486405878d134e (
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
|
{ 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
mutt-wizard
];
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;
};
}
|