mpvrc/nix/shell.nix
NotAShelf c26a0d90a2
nix: simplify devshell; use nightly rustfmt
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I47f670ffb6ce1ee8cd6a1235abfac2ef6a6a6964
2026-03-29 21:26:21 +03:00

25 lines
292 B
Nix

{
mkShell,
rust-analyzer,
rustfmt,
clippy,
cargo,
openssl,
pkg-config,
rustc,
}:
mkShell {
name = "mrc";
packages = [
cargo
rustc
rust-analyzer
clippy
(rustfmt.override {asNightly = true;})
# For TLS and friends
openssl
pkg-config
];
}