17 lines
397 B
Nix
17 lines
397 B
Nix
{ mkDerivation, attoparsec, base, mtl, pipes, pipes-bytestring
|
|
, stdenv, text
|
|
}:
|
|
mkDerivation {
|
|
pname = "addressbook";
|
|
version = "0.1.0.0";
|
|
src = ./.;
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
attoparsec base mtl pipes pipes-bytestring text
|
|
];
|
|
executableHaskellDepends = [ base ];
|
|
testHaskellDepends = [ base ];
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|