summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
Diffstat (limited to 'shells')
-rw-r--r--shells/rust.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/shells/rust.nix b/shells/rust.nix
new file mode 100644
index 0000000..f715813
--- /dev/null
+++ b/shells/rust.nix
@@ -0,0 +1,13 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+ nativeBuildInputs = with pkgs; [
+ clang
+ llvmPackages.bintools
+ rustup
+ rustfmt
+ trunk
+ rustc-wasm32
+ dioxus-cli
+ ];
+}