wohnugs-suche/berlin-scraper/default.nix

19 lines
577 B
Nix
Raw Normal View History

2023-11-08 08:55:48 +00:00
{ mkDerivation, aeson, base, bytestring, http-client-openssl, 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-08 08:55:48 +00:00
aeson base bytestring http-client-openssl 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";
}