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 b68279a commit 0b332f8Copy full SHA for 0b332f8
builder/make-config-files.nix
@@ -5,7 +5,7 @@
5
let
6
# Sort and remove duplicates from nonReinstallablePkgs.
7
# That way changes to the order of nonReinstallablePkgs does not require rebuilds.
8
- nonReinstallablePkgs' = __attrNames (lib.genAttrs (component.pre-existing ++ nonReinstallablePkgs) (x: x));
+ nonReinstallablePkgs' = __attrNames (lib.genAttrs (component.pre-existing or [] ++ nonReinstallablePkgs) (x: x));
9
10
ghc = if enableDWARF then defaults.ghc.dwarf else defaults.ghc;
11
0 commit comments