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