summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 1405803..af28c99 100644
--- a/flake.nix
+++ b/flake.nix
@@ -22,11 +22,13 @@
};
devShells.default = pkgs.haskellPackages.shellFor {
- packages = p: [ p.www-main ];
+ packages = _: [];
+ # packages = p: [ p.www-main ];
withHoogle = true;
buildInputs = with pkgs.haskellPackages; [
cabal-install
hpack
+ pkgs.zlib
];
};
});