11 lines
225 B
Nix
11 lines
225 B
Nix
{ mkSilverBin, nix-gitignore }:
|
|
|
|
mkSilverBin {
|
|
pname = "ableGo";
|
|
version = "0.1.0";
|
|
|
|
src = nix-gitignore.gitignoreSource [ ./.gitignore ] ./.;
|
|
|
|
grammarName = "io:mzhang:ableGo:compiler";
|
|
javaFlags = [ "-Xss8M" ];
|
|
}
|