rust_mc_serv/shell.nix
MeexReay 7ffccfed26 created sniff-packets program
sniffed update_tags and registry_data packets to .bin files
2025-05-04 03:15:22 +03:00

16 lines
218 B
Nix

with import <nixpkgs> { };
mkShell {
nativeBuildInputs = [
direnv
rustc
cargo
rustfmt
python3
python3Packages.beautifulsoup4
python3Packages.requests
];
NIX_ENFORCE_PURITY = true;
}