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