docs: fixup description of builtins.importNative (#10810)

There was an argument missing and the fact that the imported function is
called.
This commit is contained in:
Jörg Thalheim 2024-06-04 21:55:05 +02:00 committed by GitHub
parent ef140c25d1
commit 49c6f34911
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,10 +19,10 @@ struct EvalSettings : Config
Enable built-in functions that allow executing native code.
In particular, this adds:
- `builtins.importNative` *path*
- `builtins.importNative` *path* *symbol*
Load a dynamic shared object (DSO) at *path* which exposes a function pointer to a procedure that initialises a Nix language value, and return that value.
The procedure must have the following signature:
Opens dynamic shared object (DSO) at *path*, loads the function with the symbol name *symbol* from it and runs it.
The loaded function must have the following signature:
```cpp
extern "C" typedef void (*ValueInitialiser) (EvalState & state, Value & v);
```