diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..08e480c7 --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +with import {}; +stdenv.mkDerivation { + name = "my-rust-env"; + buildInputs = [ + pkgs.cargo + pkgs.gcc + ]; +}