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