Skip to content

Commit

Permalink
add dev to env scopes for legacyPackages
Browse files Browse the repository at this point in the history
  • Loading branch information
tek committed Jun 21, 2024
1 parent c0667ab commit 24c85f2
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions modules/output.nix
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,15 @@ in {

lowPrio = {

legacyPackages = util.output.scopedEnvOutputs config.ghcVersions // util.output.envsApi config.envs // {
inherit config;
inherit (config.envs.dev.ghc) pkgs ghc;
ghc0 = config.envs.dev.ghc.vanillaGhc;
show-config = show-config.shell;
};
legacyPackages =
util.output.scopedEnvOutputs (["dev"] ++ config.ghcVersions) //
util.output.envsApi config.envs //
{
inherit config;
inherit (config.envs.dev.ghc) pkgs ghc;
ghc0 = config.envs.dev.ghc.vanillaGhc;
show-config = show-config.shell;
};

apps = config.hackage.output.apps //
basicApps //
Expand Down

0 comments on commit 24c85f2

Please sign in to comment.