19 lines
577 B
Nix
19 lines
577 B
Nix
{ mkDerivation, aeson, base, bytestring, http-client-openssl, lens
|
|
, lib, optparse-generic, scalpel, servant-client, sqlite-simple
|
|
, telegram-bot-api, telegram-bot-simple, text, wreq
|
|
}:
|
|
mkDerivation {
|
|
pname = "berlin-scraper";
|
|
version = "0.1.0.0";
|
|
src = ./.;
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
executableHaskellDepends = [
|
|
aeson base bytestring http-client-openssl lens optparse-generic
|
|
scalpel servant-client sqlite-simple telegram-bot-api
|
|
telegram-bot-simple text wreq
|
|
];
|
|
license = lib.licenses.agpl3Plus;
|
|
mainProgram = "berlin-scraper";
|
|
}
|