about summary refs log tree commit diff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/tvix/default.nix20
1 files changed, 11 insertions, 9 deletions
diff --git a/views/tvix/default.nix b/views/tvix/default.nix
index 33d6b63686..feee0f2222 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
   ];
 }