diff options
Diffstat (limited to 'tvix/eval/default.nix')
-rw-r--r-- | tvix/eval/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tvix/eval/default.nix b/tvix/eval/default.nix new file mode 100644 index 000000000000..91661291f7b6 --- /dev/null +++ b/tvix/eval/default.nix @@ -0,0 +1,9 @@ +# TODO: find a way to build the benchmarks via crate2nix +{ depot, pkgs, ... }: + +depot.tvix.crates.workspaceMembers.tvix-eval.build.override { + runTests = true; + + # Make C++ Nix available, to compare eval results against. + testInputs = [ pkgs.nix ]; +} |