leds/shell.nix

16 lines
298 B
Nix
Raw Normal View History

2021-12-23 19:34:26 +00:00
let
pkgs = import <nixpkgs> {};
in
with pkgs;
mkShell {
buildInputs = [
cargo
rustc
rustfmt
rls
protobuf
2021-12-24 18:29:57 +00:00
llvm
2021-12-23 19:34:26 +00:00
];
RUST_SRC_PATH= "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
}