use rust stuff in the dev shell

flake-overlay-tweak
Brian Hicks 2021-08-24 15:09:39 -05:00
parent 7633bfd18b
commit d81bec489c
1 changed files with 10 additions and 1 deletions

View File

@ -33,6 +33,15 @@
defaultApp = apps.similar-sort;
# `nix develop`
devShell = pkgs.mkShell { nativeBuildInputs = [ pkgs.go ]; };
devShell = pkgs.mkShell {
nativeBuildInputs = [
pkgs.cargo
pkgs.cargo-edit
pkgs.cargo-watch
pkgs.rustPackages.clippy
pkgs.rustc
pkgs.rustfmt
];
};
});
}