ares/rust/shell.nix
2022-07-15 21:02:51 -05:00

5 lines
152 B
Nix

{ sources ? import ./nix/sources.nix, pkgs ? import sources.nixpkgs {} }:
pkgs.mkShell {
packages = with pkgs; [ rustc cargo cargo-watch rustfmt ];
}