Added shell.nix

newfloat
mark 2023-09-03 13:12:22 -07:00
parent 11b5cd877a
commit 80b1c76c59
1 changed files with 11 additions and 0 deletions

11
shell.nix Normal file
View File

@ -0,0 +1,11 @@
let
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f155f0cf4ea43c4e3c8918d2d327d44777b6cad4.tar.gz") {};
in pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rustfmt
m4
];
}