16 lines
190 B
Nix
16 lines
190 B
Nix
|
let
|
||
|
nixpkgs = <nixpkgs>;
|
||
|
pkgs = import nixpkgs {
|
||
|
config = { };
|
||
|
overlays = [ ];
|
||
|
};
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
cargo
|
||
|
rustc
|
||
|
rustfmt
|
||
|
clippy
|
||
|
];
|
||
|
}
|