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
|
|
|
|
cabal-install
|
|
|
|
haskellPackages.implicit-hie # Automatically generate hie.yaml!
|
|
|
|
];
|
2023-08-14 13:49:55 +02:00
|
|
|
}
|
|
|
|
|