reddit-pub/reddit_pub/default.nix

23 lines
674 B
Nix
Raw Normal View History

2021-10-27 23:21:09 +03:00
{ mkDerivation, aeson, amqp, base, bytestring, containers, dhall
2021-10-27 22:43:20 +03:00
, hedgehog, hspec, hspec-hedgehog, lens, lens-aeson, lib, mtl
2022-05-16 21:42:11 +03:00
, pipes, reddit-lib, sqlite-simple, text, wreq
2021-10-25 19:04:24 +03:00
}:
mkDerivation {
pname = "reddit-pub";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
2022-05-16 21:42:11 +03:00
enableSeparateDataOutput = true;
2021-10-25 19:04:24 +03:00
libraryHaskellDepends = [
2021-10-27 23:21:09 +03:00
aeson amqp base bytestring containers dhall lens lens-aeson mtl
2022-05-16 21:42:11 +03:00
pipes reddit-lib sqlite-simple text wreq
2021-10-25 19:04:24 +03:00
];
executableHaskellDepends = [ base ];
2021-10-27 23:21:09 +03:00
testHaskellDepends = [
base bytestring containers hedgehog hspec hspec-hedgehog mtl
];
2021-10-25 19:04:24 +03:00
license = "unknown";
hydraPlatforms = lib.platforms.none;
}