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