pharmacy/shell.nix

9 lines
144 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "rust-dev";
buildInputs = with pkgs; [
rustc cargo rust-analyzer rustfmt
];
}