pfacts/shell.nix

9 lines
116 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo rustfmt rls
];
}