nix-book/source/recipes/haskell-nixpkg/shell/shell.nix
2023-11-28 16:13:05 +00:00

9 lines
193 B
Nix

with (import <nixpkgs> {});
let
customGhc = haskellPackages.ghcWithPackages (pkgs: with pkgs; [ containers ]);
in
mkShell {
buildInputs = [
customGhc
];
}