mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-15 15:33:47 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I47f670ffb6ce1ee8cd6a1235abfac2ef6a6a6964
25 lines
292 B
Nix
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
|
|
];
|
|
}
|