1
Fork 0

Set up haskell-tools.nvim

This commit is contained in:
Matei Adriel 2023-09-22 21:08:11 +03:00
parent c8d7224dc9
commit 346d1b78d9
No known key found for this signature in database
10 changed files with 128 additions and 95 deletions
devshells

View file

@ -1,6 +1,12 @@
# shell containing the tools i most commonly use for haskell work!
{ pkgs, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [ ghc hpack stack cabal-install ];
buildInputs = with pkgs; [
ghc
hpack
stack
cabal-install
haskellPackages.implicit-hie # Automatically generate hie.yaml!
];
}