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