choirMail/choirMail.nix

18 lines
558 B
Nix

{ mkDerivation, base, bytestring, http-client, lens, lib, mime-mail
, optparse-applicative, parsec, smtp-mail, text, time, tomland
, transformers, wreq
}:
mkDerivation {
pname = "choirMail";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base bytestring http-client lens mime-mail optparse-applicative
parsec smtp-mail text time tomland transformers wreq
];
homepage = ""https://git.nerfingen.de/nerf/choirMail"";
license = lib.licenses.gpl3Plus;
mainProgram = "choirMail";
}