Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unify mkNV* and NV* patterns by bidirectional synonyms in value modules #1046

Merged
merged 13 commits into from
Jan 23, 2022
Merged
2 changes: 1 addition & 1 deletion src/Nix.hs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ evaluateExpression mpath evaluator handler expr =
f' <- demand f
val <-
case f' of
NVClosure _ g -> g $ mkNVSet mempty $ M.fromList args
NVClosure _ g -> g $ NVSet mempty $ M.fromList args
_ -> pure f
processResult handler val
where
Expand Down
Loading