* Allow null in derivation bindings.

This commit is contained in:
Eelco Dolstra 2003-11-06 15:24:31 +00:00
parent cfaea07444
commit 90e26d392c
1 changed files with 2 additions and 0 deletions

View File

@ -114,6 +114,8 @@ static string processBinding(EvalState & state, Expr e, NixExpr & ne)
}
return s;
}
if (ATmatch(e, "Null")) return "";
throw badTerm("invalid derivation binding", e);
}