We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d7586d + 6a3d0eb commit 06bb597Copy full SHA for 06bb597
modules/hooks.nix
@@ -3485,7 +3485,7 @@ lib.escapeShellArgs (lib.concatMap (ext: [ "--ghc-opt" "-X${ext}" ]) hooks.ormol
3485
{
3486
# instead of repeating the option name for each element,
3487
# create a single option with a space-separated list of unique values.
3488
- mkList = k: v: [ (mkOptionName k) ] ++ lib.unique v;
+ mkList = k: v: if v == [ ] then [ ] else [ (mkOptionName k) ] ++ lib.unique v;
3489
}
3490
settings;
3491
in
0 commit comments