haskell-primitive: avoid infinite recursion during evaluation

This commit is contained in:
Peter Simons 2020-02-21 12:02:00 +01:00
parent 93b4f52f2c
commit f95d327f4e

View file

@ -706,4 +706,8 @@ self: super: builtins.intersectAttrs super {
wrapProgram $out/bin/mplayer-spot --prefix PATH : "${path}"
'';
});
# break infinite recursion with base-orphans
primitive = dontCheck super.primitive;
}