Shea Levy 5cd022d6c0 Add importNative primop
This can be used to import a dynamic shared object and return an
arbitrary value, including new primops. This can be used both to test
new primops without having to recompile nix every time, and to build
specialized primops that probably don't belong upstream (e.g. a function
that calls out to gpg to decrypt a nixops secret as-needed).

The imported function should initialize the Value & as needed. A single
import can define multiple values by creating an attrset or list, of
course.

An example initialization function might look like:

extern "C" void initialize(nix::EvalState & state, nix::Value & v)
{
    v.type = nix::tPrimOp;
    v.primOp = NEW nix::PrimOp(myFun, 1, state.symbols.create("myFun"));
}

Then `builtins.importNative ./example.so "initialize"` will evaluate to
the primop defined in the myFun function.
2014-06-17 12:08:01 -04:00
2014-05-26 17:20:58 +02:00
2014-04-03 17:37:14 +02:00
2014-02-01 14:38:12 +01:00
2014-06-17 12:08:01 -04:00
2014-06-10 14:02:56 +02:00
2014-05-02 13:14:10 +02:00
2004-11-07 20:30:02 +00:00
2012-05-21 09:43:01 -04:00
2014-05-26 17:53:17 +02:00
2014-05-26 17:21:20 +02:00
2014-05-14 22:25:25 +02:00
2014-05-02 13:14:10 +02:00
2014-05-06 10:51:16 +02:00
2014-05-03 17:54:48 +02:00
2014-04-11 11:15:24 +02:00

Nix is a purely functional package manager.  For installation and
usage instructions, please read the manual, which can be found in
`docs/manual/manual.html', and additionally at the Nix website at
<http://nixos.org/>.


Acknowledgments

This product includes software developed by the OpenSSL Project for
use in the OpenSSL Toolkit (http://www.OpenSSL.org/).
S
Description
Working fork of Lix - carries the adaptive load-aware build-remote patch. Upstream: gerrit.lix.systems
Readme
92 MiB
Languages
C++ 74.9%
Python 11.7%
Nix 6.1%
Shell 3.6%
Meson 2%
Other 1.6%