1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-08 02:43:54 +02:00

* Allow null in derivation bindings.

This commit is contained in:
Eelco Dolstra 2003-11-06 15:24:31 +00:00
parent cfaea07444
commit 90e26d392c

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);
}