tronly-typed/default.nix

18 lines
471 B
Nix
Raw Normal View History

2024-06-01 08:45:38 +00:00
{ mkDerivation, attoparsec, base, bytestring, containers, extra
, lib, mtl, network, network-run, optparse-generic, text
, utf8-string
}:
mkDerivation {
pname = "tronly-typed";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
attoparsec base bytestring containers extra mtl network network-run
optparse-generic text utf8-string
];
license = lib.licenses.agpl3Plus;
mainProgram = "gpn-tron";
}