2023-08-14 13:49:55 +02:00
|
|
|
# shell containing the tools i most commonly use for haskell work!
|
|
|
|
{ pkgs, ... }:
|
|
|
|
pkgs.mkShell {
|
2023-09-22 20:08:11 +02:00
|
|
|
buildInputs = with pkgs; [
|
|
|
|
ghc
|
|
|
|
hpack
|
|
|
|
stack
|
2023-12-02 00:59:18 +01:00
|
|
|
fourmolu # Formatter
|
2023-09-22 20:08:11 +02:00
|
|
|
cabal-install
|
2023-11-04 18:58:09 +01:00
|
|
|
haskell-language-server
|
2023-09-22 20:08:11 +02:00
|
|
|
haskellPackages.implicit-hie # Automatically generate hie.yaml!
|
|
|
|
];
|
2023-08-14 13:49:55 +02:00
|
|
|
}
|
|
|
|
|