about summary refs log tree commit diff
path: root/tvix/nix-compat/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/nix-compat/default.nix')
-rw-r--r--tvix/nix-compat/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/tvix/nix-compat/default.nix b/tvix/nix-compat/default.nix
new file mode 100644
index 0000000000..9df76e12fc
--- /dev/null
+++ b/tvix/nix-compat/default.nix
@@ -0,0 +1,7 @@
+{ depot, ... }:
+
+depot.tvix.crates.workspaceMembers.nix-compat.build.override {
+  runTests = true;
+  # make sure we also enable async here, so run the tests behind that feature flag.
+  features = [ "default" "async" "wire" ];
+}