9 lines
131 B
Nix
9 lines
131 B
Nix
{ pkgs ? import <nixpkgs> {} }: with pkgs; mkShell {
|
|
buildInputs = [
|
|
cargo
|
|
rustc
|
|
rust-analyzer
|
|
pkg-config
|
|
];
|
|
}
|