5 lines
136 B
Nix
5 lines
136 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [ rustc cargo gcc rustfmt clippy ];
|
|
name = "rust-env";
|
|
}
|