Skip to content

Commit 0b332f8

Browse files
committed
Fix hydra eval error
1 parent b68279a commit 0b332f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/make-config-files.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
let
66
# Sort and remove duplicates from nonReinstallablePkgs.
77
# That way changes to the order of nonReinstallablePkgs does not require rebuilds.
8-
nonReinstallablePkgs' = __attrNames (lib.genAttrs (component.pre-existing ++ nonReinstallablePkgs) (x: x));
8+
nonReinstallablePkgs' = __attrNames (lib.genAttrs (component.pre-existing or [] ++ nonReinstallablePkgs) (x: x));
99

1010
ghc = if enableDWARF then defaults.ghc.dwarf else defaults.ghc;
1111

0 commit comments

Comments
 (0)