mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
17 lines
257 B
Nix
17 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}";
|
||
|
}
|