mpvrc/nix/shell.nix
NotAShelf 1f1a94f747
meta: rename to 'mpvrc'
mrc is taken :(

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I2cf0cab8dce04cd04981177d43b9b9b76a6a6964
2026-03-29 21:26:24 +03:00

27 lines
313 B
Nix

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