diff options
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000000..3a5a4ef9ecc5 --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +let + pkgs = import <nixpkgs> {}; +in pkgs.mkShell { + buildInputs = with pkgs; [ + (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [ + ])) + ]; +} |