buuka/default.nix

21 lines
602 B
Nix
Raw Normal View History

2020-12-30 22:09:02 +02:00
{ mkDerivation, aeson, base, conduit, conduit-extra, hedgehog
, hedgehog-corpus, mtl, optparse-applicative, stdenv, tasty
, tasty-hedgehog, text, transformers, unliftio-core, yaml
2020-12-30 18:35:47 +02:00
}:
mkDerivation {
pname = "buuka";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base conduit conduit-extra mtl transformers unliftio-core
yaml
];
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;
}