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 31a67d1 commit 03d7bf0Copy full SHA for 03d7bf0
src/Nix/Normal.hs
@@ -100,7 +100,9 @@ normalizeValueF f = run . iterNValueM run (flip go) (fmap Free . sequenceNValue'
100
(do
101
i <- ask
102
when (i > 2000) $ fail "Exceeded maximum normalization depth of 2000 levels"
103
- lifted (lifted $ f t) $ local succ . k
+ (lifted . lifted)
104
+ (f t)
105
+ (local succ . k)
106
)
107
(pure $ pure t)
108
b
0 commit comments