rust_mc_serv/shell.nix
2025-05-07 12:40:34 +03:00

13 lines
187 B
Nix

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