diff options
author | Vincent Ambo <mail@tazj.in> | 2023-06-13T10·32+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-06-13T12·50+0000 |
commit | 8d632af36e76df1bfaa7cfb2f04e4ca75a37ee56 (patch) | |
tree | 218b4223c3ed79dd72192af13b75c8ef1afb0a08 /views | |
parent | b16a2f302e643207843fffb196d520881808e5ad (diff) |
fix(views/tvix): add fuse dependencies to external shell view r/6285
Change-Id: Ie7b8c5b983e5b41bffe0748d0047ffcfd82072e8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8759 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'views')
-rw-r--r-- | views/tvix/default.nix | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/views/tvix/default.nix b/views/tvix/default.nix index 33d6b6368668..feee0f222240 100644 --- a/views/tvix/default.nix +++ b/views/tvix/default.nix @@ -11,14 +11,16 @@ pkgs.mkShell { name = "tvix-rust-dev-env"; - packages = [ - pkgs.buf-language-server - pkgs.cargo - pkgs.clippy - pkgs.rust-analyzer - pkgs.rustc - pkgs.rustfmt - pkgs.protobuf - pkgs.evans + packages = with pkgs; [ + buf-language-server + cargo + clippy + evans + fuse + pkg-config + protobuf + rust-analyzer + rustc + rustfmt ]; } |