addressbook/shell.nix

16 lines
319 B
Nix
Raw Normal View History

2020-12-10 19:47:11 +02:00
with (import <nixpkgs> {});
let addressbook = haskellPackages.callPackage ./. {};
in
mkShell {
name = "addressbook-shell";
buildInputs = [
ghcid
stylish-haskell
haskellPackages.cabal-install
(haskellPackages.ghcWithHoogle (_: addressbook.buildInputs ++ addressbook.propagatedBuildInputs))
];
}