buuka/default.nix

26 lines
867 B
Nix
Raw Normal View History

2021-01-03 09:00:40 +02:00
{ mkDerivation, aeson, base, bytestring, conduit, conduit-extra
, containers, deriving-compat, exceptions, filepath, hashable
2021-10-27 20:46:23 +03:00
, hashids, hedgehog, hedgehog-corpus, lens, lib, mtl
, optparse-applicative, regex-tdfa, sqlite-simple, tasty
2021-01-03 09:00:40 +02:00
, tasty-hedgehog, tasty-hunit, text, transformers, unliftio, vector
, yaml
2020-12-30 18:35:47 +02:00
}:
mkDerivation {
pname = "buuka";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
2021-01-03 09:00:40 +02:00
aeson base bytestring conduit conduit-extra containers exceptions
filepath hashable hashids lens mtl regex-tdfa sqlite-simple text
transformers unliftio vector yaml
2020-12-30 18:35:47 +02:00
];
2020-12-31 08:31:31 +02:00
executableHaskellDepends = [ base optparse-applicative unliftio ];
2020-12-30 22:09:02 +02:00
testHaskellDepends = [
2021-01-03 00:05:16 +02:00
aeson base deriving-compat hedgehog hedgehog-corpus tasty
tasty-hedgehog tasty-hunit text
2020-12-30 22:09:02 +02:00
];
2021-10-27 20:46:23 +03:00
license = lib.licenses.bsd3;
2020-12-30 18:35:47 +02:00
}