mirror of
https://codeberg.org/mhwombat/nix-book.git
synced 2025-12-30 18:24:58 +08:00
9 lines
193 B
Nix
9 lines
193 B
Nix
with (import <nixpkgs> {});
|
|
let
|
|
customGhc = haskellPackages.ghcWithPackages (pkgs: with pkgs; [ containers ]);
|
|
in
|
|
mkShell {
|
|
buildInputs = [
|
|
customGhc
|
|
];
|
|
}
|