hocker/shell.nix
2021-04-26 11:24:42 -07:00

13 lines
206 B
Nix

let
pkgs = import ./nix/pkgs.nix;
hocker = pkgs.haskellPackages.hocker;
in
hocker.env.overrideAttrs (old: {
buildInputs = (old.buildInputs or [ ]) ++ [
pkgs.cabal-install
pkgs.ghcid
];
})