buuka/default.nix

22 lines
681 B
Nix
Raw Normal View History

2020-12-30 23:29:56 +02:00
{ mkDerivation, aeson, base, bytestring, conduit, conduit-extra
, containers, exceptions, filepath, hedgehog, hedgehog-corpus, mtl
, optparse-applicative, stdenv, tasty, tasty-hedgehog, text
, transformers, unliftio, yaml
2020-12-30 18:35:47 +02:00
}:
mkDerivation {
pname = "buuka";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
2020-12-30 23:29:56 +02:00
aeson base bytestring conduit conduit-extra containers exceptions
filepath mtl transformers unliftio yaml
2020-12-30 18:35:47 +02:00
];
executableHaskellDepends = [ base optparse-applicative ];
2020-12-30 22:09:02 +02:00
testHaskellDepends = [
aeson base hedgehog hedgehog-corpus tasty tasty-hedgehog text
];
2020-12-30 18:35:47 +02:00
license = stdenv.lib.licenses.bsd3;
}