From 7c92b07efd6d3a183c2b6970102647fea08fc49a Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 28 Dec 2021 14:29:30 +0100 Subject: feat(tvix): set up cargo rust project First steps for baba Change-Id: Id6a68c5630cb85f280f4dcc7b2acf10c02454fd6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4732 Tested-by: BuildkiteCI Reviewed-by: tazjin --- tvix/shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tvix/shell.nix (limited to 'tvix/shell.nix') diff --git a/tvix/shell.nix b/tvix/shell.nix new file mode 100644 index 000000000000..600d96d76d28 --- /dev/null +++ b/tvix/shell.nix @@ -0,0 +1,10 @@ +let + depot = (import ./.. {}); + pkgs = depot.third_party.nixpkgs; + +in pkgs.mkShell { + buildInputs = [ + pkgs.rustup + pkgs.rust-analyzer + ]; +} -- cgit 1.4.1