pfacts/shell.nix

9 lines
116 B
Nix
Raw Permalink Normal View History

2020-05-15 13:04:04 +00:00
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo rustfmt rls
];
}