diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000000000000000000000000000000000000..c46699e638d326f083666fdb1172b8c1150c90a7 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + stack + zsh + jq + ]; +}