With the nixpkgs bump (#131) there is no ghc-8.6.3 anymore.
Allow building a stack project directly without needing to generate the scaffolding. ```nix { mkStackPkgSet, callStackToNix, ... }: let pkgSet = mkStackPkgSet { stack-pkgs = callStackToNix { src = ./.; }; pkg-def-extras = []; modules = []; }; in pkgSet.config.hsPkgs ```