rnix 0.7.0

A Nix parser written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
{ pkgs_fn ? import <nixpkgs> }:

let
  mozilla_overlay = import (fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
  pkgs = pkgs_fn { overlays = [ mozilla_overlay ]; };

  inherit (pkgs) stdenv;
in stdenv.mkDerivation {
  name = "rnix";
  buildInputs = [ pkgs.latest.rustChannels.stable.rust ];
}