addressbook/default.nix

17 lines
493 B
Nix
Raw Normal View History

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