addressbook/default.nix

23 lines
762 B
Nix
Raw Normal View History

2020-12-10 22:22:46 +02:00
{ mkDerivation, attoparsec, base, bytestring, bytestring-trie
2020-12-11 17:55:52 +02:00
, conduit, conduit-extra, containers, filepath, hedgehog
, hedgehog-corpus, HUnit, lens, mtl, optparse-applicative, 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 22:22:46 +02:00
attoparsec base bytestring bytestring-trie conduit conduit-extra
2020-12-11 17:55:52 +02:00
containers filepath lens mtl text vector
2020-12-10 19:47:11 +02:00
];
2020-12-11 17:55:52 +02:00
executableHaskellDepends = [ base optparse-applicative text ];
2020-12-10 21:24:23 +02:00
testHaskellDepends = [
2020-12-10 22:22:46 +02:00
base bytestring conduit conduit-extra 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;
}