reddit-pub/default.nix

20 lines
574 B
Nix
Raw Normal View History

2021-10-27 22:43:20 +03:00
{ mkDerivation, acid-state, aeson, amqp, base, bytestring, dhall
, hedgehog, hspec, hspec-hedgehog, lens, lens-aeson, lib, mtl
, pipes, safecopy, text, wreq
2021-10-25 19:04:24 +03:00
}:
mkDerivation {
pname = "reddit-pub";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
2021-10-27 22:43:20 +03:00
acid-state aeson amqp base bytestring dhall lens lens-aeson mtl
pipes safecopy text wreq
2021-10-25 19:04:24 +03:00
];
executableHaskellDepends = [ base ];
2021-10-27 22:43:20 +03:00
testHaskellDepends = [ base hedgehog hspec hspec-hedgehog ];
2021-10-25 19:04:24 +03:00
license = "unknown";
hydraPlatforms = lib.platforms.none;
}