Added shell.nix file

This commit is contained in:
Random936 2024-12-22 18:47:11 -08:00
parent 7ec442c93b
commit 23102ce070
3 changed files with 10 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use nix

1
.gitignore vendored
View File

@ -1 +1,2 @@
/target /target
/.direnv

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustc
cargo
iconv
];
}