18 lines
400 B
Nix
18 lines
400 B
Nix
{ mkDerivation, aeson, base, bytestring, directory, lib, process
|
|
, text
|
|
}:
|
|
mkDerivation {
|
|
pname = "p2prc";
|
|
version = "0.1.0.0";
|
|
src = ./.;
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
aeson base bytestring directory process text
|
|
];
|
|
executableHaskellDepends = [ base ];
|
|
description = "P2PRC haskell library";
|
|
license = "unknown";
|
|
mainProgram = "p2prc";
|
|
}
|