We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303ed11 commit ccbc76dCopy full SHA for ccbc76d
overlays/haskell.nix
@@ -420,7 +420,7 @@ self: super: {
420
modules = (args.modules or [])
421
++ self.lib.optional (args ? ghc) { ghc.package = args.ghc; };
422
};
423
- in { inherit (pkg-set.config) hsPkgs; plan-nix = plan.nix; };
+ in { inherit (pkg-set.config) hsPkgs; inherit pkg-set; plan-nix = plan.nix; };
424
425
cabalProject = args: let p = cabalProject' args;
426
in p.hsPkgs // {
@@ -445,7 +445,7 @@ self: super: {
445
++ (args.modules or [])
446
447
448
- in { inherit (pkg-set.config) hsPkgs; stack-nix = stack.nix; };
+ in { inherit (pkg-set.config) hsPkgs; inherit pkg-set; stack-nix = stack.nix; };
449
450
stackProject = args: let p = stackProject' args;
451
0 commit comments