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

View file

@ -8,12 +8,13 @@
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 {
buildInputs = [ customGhc ];
shellHook = ''
export FOO="bar"
'';
};
};
}