We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 550c894 + 7f6efe9 commit ac6318cCopy full SHA for ac6318c
1 file changed
src/libexpr/primops.cc
@@ -5028,12 +5028,6 @@ void EvalState::createBaseEnv(const EvalSettings & evalSettings)
5028
addPrimOp(std::move(primOpAdjusted));
5029
}
5030
5031
- for (auto & primOp : evalSettings.extraPrimOps) {
5032
- auto primOpAdjusted = primOp;
5033
- primOpAdjusted.arity = std::max(primOp.args.size(), primOp.arity);
5034
- addPrimOp(std::move(primOpAdjusted));
5035
- }
5036
-
5037
/* Add a wrapper around the derivation primop that computes the
5038
`drvPath' and `outPath' attributes lazily.
5039
0 commit comments