This commit is contained in:
Amy de Buitléir 2025-09-06 16:42:27 +01:00
parent d7d9791406
commit c7adcfa6b9
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 ];
};
};
}