nix-book/source/shell-recipes/shell-haskell-no-cabal/shell.nix
Amy de Buitléir 6662273ae7 initial commit
2023-11-18 14:21:19 +00:00

9 lines
193 B
Nix

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