12 lines
157 B
Nix
12 lines
157 B
Nix
|
let
|
||
|
depot = import ../../../.. {};
|
||
|
pkgs = depot.third_party.nixpkgs;
|
||
|
in
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
rustup
|
||
|
rust-analyzer
|
||
|
];
|
||
|
}
|