buuka/default.nix

23 lines
740 B
Nix
Raw Normal View History

2021-01-01 08:29:24 +02:00
{ mkDerivation, aeson, base, bytestring, containers, exceptions
, filepath, hashable, hashids, hedgehog, hedgehog-corpus, lens, mtl
2021-01-02 09:17:29 +02:00
, optparse-applicative, stdenv, tasty, 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 = [
aeson base bytestring containers exceptions filepath hashable
hashids lens mtl 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-02 09:17:29 +02:00
aeson base hedgehog hedgehog-corpus tasty tasty-hedgehog
tasty-hunit text
2020-12-30 22:09:02 +02:00
];
2020-12-30 18:35:47 +02:00
license = stdenv.lib.licenses.bsd3;
}