addressbook/default.nix

26 lines
829 B
Nix
Raw Permalink Normal View History

{ mkDerivation, attoparsec, base, bytestring, conduit
, conduit-extra, containers, criterion, filepath, hedgehog
, hedgehog-corpus, HUnit, lens, lib, mtl, optparse-applicative
2022-02-07 15:03:00 +02:00
, parallel, tasty, tasty-hedgehog, tasty-hunit, text, unix, vector
2020-12-10 19:47:11 +02:00
}:
mkDerivation {
pname = "addressbook";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
attoparsec base bytestring conduit conduit-extra containers
2022-02-07 15:03:00 +02:00
filepath lens mtl parallel text unix vector
];
executableHaskellDepends = [
base bytestring containers criterion hedgehog-corpus
optparse-applicative text
2020-12-10 19:47:11 +02:00
];
2020-12-10 21:24:23 +02:00
testHaskellDepends = [
base bytestring conduit conduit-extra containers hedgehog
hedgehog-corpus HUnit tasty tasty-hedgehog tasty-hunit text vector
2020-12-10 21:24:23 +02:00
];
license = lib.licenses.bsd3;
2020-12-10 19:47:11 +02:00
}