ares/rust/shell.nix

5 lines
152 B
Nix
Raw Normal View History

2022-07-16 05:02:51 +03:00
{ sources ? import ./nix/sources.nix, pkgs ? import sources.nixpkgs {} }:
pkgs.mkShell {
packages = with pkgs; [ rustc cargo cargo-watch rustfmt ];
}