wohnugs-suche/berlin-scraper/default.nix

20 lines
618 B
Nix
Raw Permalink Normal View History

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