about summary refs log tree commit diff
path: root/tvix/eval/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/default.nix')
-rw-r--r--tvix/eval/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/tvix/eval/default.nix b/tvix/eval/default.nix
new file mode 100644
index 0000000000..91661291f7
--- /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 ];
+}