2020-12-10 21:24:23 +02:00
|
|
|
{ mkDerivation, attoparsec, base, bytestring-trie, hedgehog
|
2020-12-10 21:38:32 +02:00
|
|
|
, hedgehog-corpus, HUnit, mtl, pipes, pipes-bytestring, stdenv
|
|
|
|
, 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 = [
|
2020-12-10 19:50:26 +02:00
|
|
|
attoparsec base bytestring-trie mtl pipes pipes-bytestring text
|
2020-12-10 21:24:23 +02:00
|
|
|
vector
|
2020-12-10 19:47:11 +02:00
|
|
|
];
|
|
|
|
executableHaskellDepends = [ base ];
|
2020-12-10 21:24:23 +02:00
|
|
|
testHaskellDepends = [
|
2020-12-10 21:38:32 +02:00
|
|
|
base hedgehog hedgehog-corpus HUnit tasty tasty-hedgehog
|
|
|
|
tasty-hunit text vector
|
2020-12-10 21:24:23 +02:00
|
|
|
];
|
2020-12-10 19:47:11 +02:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
}
|