choirMail/choirMail.nix

19 lines
543 B
Nix
Raw Permalink Normal View History

2022-11-08 19:16:34 +00:00
{ mkDerivation, base, bytestring, lib, mime-mail, modern-uri
, optparse-applicative, parsec, req, smtp-mail, text, time, tomland
, transformers
2022-11-08 19:16:34 +00:00
}:
mkDerivation {
pname = "choirMail";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base bytestring mime-mail modern-uri optparse-applicative parsec
req smtp-mail text time tomland transformers
2022-11-08 19:16:34 +00:00
];
homepage = ""https://git.nerfingen.de/nerf/choirMail"";
license = lib.licenses.gpl3Plus;
mainProgram = "choirMail";
}