added nix shell

This commit is contained in:
Winter 2024-11-13 13:27:23 -08:00
parent 72b15f237e
commit e1ef48fc55

3
shell.nix Normal file
View File

@ -0,0 +1,3 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell { buildInputs = [ rustc cargo ]; }