leds/shell.nix
2021-12-24 13:32:18 -05:00

16 lines
No EOL
298 B
Nix

let
pkgs = import <nixpkgs> {};
in
with pkgs;
mkShell {
buildInputs = [
cargo
rustc
rustfmt
rls
protobuf
llvm
];
RUST_SRC_PATH= "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
}