reddit-pub/default.nix

18 lines
435 B
Nix

{ mkDerivation, aeson, amqp, base, bytestring, dhall, lens
, lens-aeson, lib, mtl, pipes, text, wreq
}:
mkDerivation {
pname = "reddit-pub";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson amqp base bytestring dhall lens lens-aeson mtl pipes text
wreq
];
executableHaskellDepends = [ base ];
license = "unknown";
hydraPlatforms = lib.platforms.none;
}