7 lines
162 B
Nix
7 lines
162 B
Nix
# shell containing the tools i most commonly use for haskell work!
|
|
{ pkgs, ... }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [ ghc hpack stack cabal-install ];
|
|
}
|
|
|