Compare commits
No commits in common. "e767a6eafc4f432e5b66330a6698838ff269108a" and "adf4136c108130be0d7b9d8fb8585a66c168b16b" have entirely different histories.
e767a6eafc
...
adf4136c10
|
@ -330,7 +330,6 @@ Content-Type: application/json
|
|||
`erlang`,
|
||||
`file`,
|
||||
`forte`,
|
||||
`forth`,
|
||||
`fortran`,
|
||||
`freebasic`,
|
||||
`fsharp.net`,
|
||||
|
|
|
@ -64,5 +64,4 @@ args: {
|
|||
"llvm_ir" = import ./llvm_ir.nix args;
|
||||
"mono-basic" = import ./mono-basic.nix args;
|
||||
"j" = import ./j.nix args;
|
||||
"forth" = import ./forth.nix args;
|
||||
}
|
||||
|
|
|
@ -1,30 +0,0 @@
|
|||
{pkgs, piston, ...}:
|
||||
let
|
||||
pkg = pkgs.gforth;
|
||||
in piston.mkRuntime {
|
||||
language = "forth";
|
||||
version = pkg.version;
|
||||
runtime = "forth";
|
||||
|
||||
aliases = [
|
||||
"gforth"
|
||||
];
|
||||
|
||||
run = ''
|
||||
${pkg}/bin/gforth "$@"
|
||||
'';
|
||||
|
||||
tests = [
|
||||
(piston.mkTest {
|
||||
files = {
|
||||
"test.forth" = ''
|
||||
.( OK) bye
|
||||
'';
|
||||
};
|
||||
args = [];
|
||||
stdin = "";
|
||||
packages = [];
|
||||
main = "test.forth";
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue