about summary refs log tree commit diff
path: root/tvix/nar
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-12-20T16·23+0300
committertazjin <tazjin@tvl.su>2022-12-21T14·08+0000
commita95dea719f1b44231c485e52816c5fff4cfe42dd (patch)
treec4193fe7325f9f660c532866c1817cea22cda11f /tvix/nar
parentf467df06dcfa8383c3bd36e7877b8cf900e973c9 (diff)
chore(tvix/nar): add CI build target r/5450
Change-Id: Ic73a391da9a733cade26114ab1127907c8d62a57
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7598
Reviewed-by: flokli <flokli@flokli.de>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/nar')
-rw-r--r--tvix/nar/Cargo.lock7
-rw-r--r--tvix/nar/Cargo.toml2
-rw-r--r--tvix/nar/default.nix5
3 files changed, 6 insertions, 8 deletions
diff --git a/tvix/nar/Cargo.lock b/tvix/nar/Cargo.lock
deleted file mode 100644
index 1288e13db8..0000000000
--- a/tvix/nar/Cargo.lock
+++ /dev/null
@@ -1,7 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-version = 3
-
-[[package]]
-name = "tvix_nar"
-version = "0.0.0"
diff --git a/tvix/nar/Cargo.toml b/tvix/nar/Cargo.toml
index f27e9a0cb8..6ec8072c3a 100644
--- a/tvix/nar/Cargo.toml
+++ b/tvix/nar/Cargo.toml
@@ -1,4 +1,4 @@
 [package]
-name = "tvix_nar"
+name = "tvix-nar"
 version = "0.0.0"
 edition = "2021"
diff --git a/tvix/nar/default.nix b/tvix/nar/default.nix
new file mode 100644
index 0000000000..4d62add059
--- /dev/null
+++ b/tvix/nar/default.nix
@@ -0,0 +1,5 @@
+{ depot, ... }:
+
+depot.tvix.crates.workspaceMembers.tvix-nar.build.override {
+  runTests = true;
+}