2021-10-29 17:22:29 +03:00
|
|
|
{ mkDerivation, attoparsec, base, bytestring, conduit
|
|
|
|
, conduit-extra, containers, criterion, filepath, hedgehog
|
|
|
|
, hedgehog-corpus, HUnit, lens, lib, mtl, optparse-applicative
|
2020-12-11 17:55:52 +02:00
|
|
|
, tasty, tasty-hedgehog, tasty-hunit, text, vector
|
2020-12-10 19:47:11 +02:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "addressbook";
|
|
|
|
version = "0.1.0.0";
|
|
|
|
src = ./.;
|
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
libraryHaskellDepends = [
|
2021-10-29 17:22:29 +03:00
|
|
|
attoparsec base bytestring conduit conduit-extra containers
|
|
|
|
filepath lens mtl text vector
|
|
|
|
];
|
|
|
|
executableHaskellDepends = [
|
|
|
|
base criterion hedgehog-corpus optparse-applicative text
|
2020-12-10 19:47:11 +02:00
|
|
|
];
|
2020-12-10 21:24:23 +02:00
|
|
|
testHaskellDepends = [
|
2021-10-29 17:22:29 +03:00
|
|
|
base bytestring conduit conduit-extra containers hedgehog
|
|
|
|
hedgehog-corpus HUnit tasty tasty-hedgehog tasty-hunit text vector
|
2020-12-10 21:24:23 +02:00
|
|
|
];
|
2021-10-29 17:22:29 +03:00
|
|
|
license = lib.licenses.bsd3;
|
2020-12-10 19:47:11 +02:00
|
|
|
}
|