mpvrc/nix/shell.nix

26 lines
271 B
Nix

{
mkShell,
rust-analyzer,
rustfmt,
clippy,
cargo,
gcc,
openssl,
pkg-config,
rustc,
}:
mkShell {
name = "mrc";
packages = [
rust-analyzer
rustfmt
clippy
cargo
gcc
clippy
rustfmt
openssl
pkg-config
rustc
];
}