mirror of
https://github.com/NixOS/nix
synced 2025-07-07 10:11:47 +02:00
Allow using RegisterPrimop to define constants.
This enables plugins to add new constants, as well as new primops.
This commit is contained in:
parent
88cd2d41ac
commit
081f14a169
6 changed files with 15 additions and 6 deletions
|
@ -2,9 +2,9 @@
|
|||
|
||||
using namespace nix;
|
||||
|
||||
static void prim_constNull (EvalState & state, const Pos & pos, Value ** args, Value & v)
|
||||
static void prim_anotherNull (EvalState & state, const Pos & pos, Value ** args, Value & v)
|
||||
{
|
||||
mkNull(v);
|
||||
}
|
||||
|
||||
static RegisterPrimOp r("constNull", 1, prim_constNull);
|
||||
static RegisterPrimOp r("anotherNull", 0, prim_anotherNull);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue