mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-12 23:43:57 +00:00
16 lines
257 B
Nix
16 lines
257 B
Nix
{ pkgs
|
|
, mkShell
|
|
, cargo
|
|
, clippy
|
|
, gcc
|
|
, protobuf
|
|
, rust-analyzer
|
|
, rustc
|
|
, rustfmt
|
|
}:
|
|
|
|
mkShell {
|
|
nativeBuildInputs = [ cargo clippy gcc protobuf rust-analyzer rustc rustfmt ];
|
|
|
|
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
|
}
|