Skip to content

milahu/nix2c

Repository files navigation

nix2c

transpile nix expressions to C code.

status

failed experiment.

making evaluation faster is no solution for incremental evaluation, because we still need full re-evaluation, which is still slower than true incremental evaluation.

also, evaluation is still slow because Nix is a dynamic language, so we need type checks on runtime. we could add nonstandard type annotations via comments, similar to jsdoc types in javascript, to remove some type checks on runtime ... but this would be still slower than true incremental evaluation.

we could make JIT faster by compiling straight to machine code, just like the nodejs V8 engine ... but this would be still slower than true incremental evaluation.

incremental computing

im going back to incremental computing.

also the nickel roadmap mentions "Incremental evaluation" as a goal:

Incremental evaluation: design an incremental evaluation model and a caching mechanism in order to perform fast re-evaluation upon small changes to a configuration.

About

transpile nix expressions to C code (failed experiment)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published