11 lines
151 B
Nix
11 lines
151 B
Nix
|
let
|
||
|
depot = (import ./.. {});
|
||
|
pkgs = depot.third_party.nixpkgs;
|
||
|
|
||
|
in pkgs.mkShell {
|
||
|
buildInputs = [
|
||
|
pkgs.rustup
|
||
|
pkgs.rust-analyzer
|
||
|
];
|
||
|
}
|