wohnugs-suche/berlin-scraper/default.nix

19 lines
590 B
Nix
Raw Normal View History

2023-11-14 21:36:44 +00:00
{ mkDerivation, aeson, base, bytestring, http-client-openssl, katip
, lens, lib, optparse-generic, scalpel, servant-client
, sqlite-simple, telegram-bot-api, telegram-bot-simple, text, wreq
2023-10-24 22:15:11 +00:00
}:
mkDerivation {
pname = "berlin-scraper";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
2023-11-14 21:36:44 +00:00
aeson base bytestring http-client-openssl katip lens
optparse-generic scalpel servant-client sqlite-simple
telegram-bot-api telegram-bot-simple text wreq
2023-10-24 22:15:11 +00:00
];
license = lib.licenses.agpl3Plus;
mainProgram = "berlin-scraper";
}