mirror of
https://git.nerfingen.de/nerf/choirMail.git
synced 2025-06-08 01:31:16 +00:00
18 lines
558 B
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";
|
|
}
|