17 lines
515 B
Nix
17 lines
515 B
Nix
{ mkDerivation, base, bytestring, lib, mime-mail, modern-uri
|
|
, optparse-applicative, parsec, req, smtp-mail, text, time, tomland
|
|
}:
|
|
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
|
|
];
|
|
homepage = ""https://git.nerfingen.de/nerf/choirMail"";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "choirMail";
|
|
}
|