10 lines
212 B
Nix
10 lines
212 B
Nix
|
let
|
||
|
pkgs = import ./dep/nixpkgs { overlays = [ (import ./dep/rust-overlay) ]; };
|
||
|
rust = pkgs.rust-bin.stable.latest.rust;
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [
|
||
|
rust
|
||
|
];
|
||
|
}
|