addressbook/default.nix

23 lines
715 B
Nix
Raw Normal View History

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