[flake] Fix development shell

This commit is contained in:
Dhananjay Balan 2024-01-07 16:18:17 +01:00
parent 8f09c767e1
commit 6164ceb4c4

View File

@ -43,12 +43,12 @@
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
builder
haskellPackages.haskell-language-server # you must build it with your ghc to work
ghcid
cabal-install
nodePackages.prettier
];
inputsFrom =
map (__getAttr "env") (__attrValues self.packages.${system});
};
devShell = self.devShells.${system}.default;
});