This commit is contained in:
Amy de Buitléir 2025-09-06 18:26:31 +01:00
parent d0f50661a8
commit 2cd41d0a18
2 changed files with 2 additions and 1 deletions

View file

@ -8,11 +8,12 @@
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
customGhc = pkgs.haskellPackages.ghcWithPackages (p: with p; [ containers ]);
in
{
devShells = rec {
default = pkgs.mkShell {
packages = [ pkgs.cowsay ];
buildInputs = [ customGhc ];
};
};
}