rnix 0.14.0

A Nix parser written in Rust
Documentation
1
2
3
4
5
6
7
8
let
  y = 2;
  set = { z = 3; a = 4; b = 5; };
in {
  x = 1;
  inherit y;
  inherit (set) z a;
}