rnix 0.14.0

A Nix parser written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{
  http = http://example.com;
  https = https://github.com/NixOS/nixpkgs;
  git = git+ssh://git@github.com/owner/repo.git;
  file = file:///home/user/document.pdf;
  ftp = ftp://ftp.example.com/pub/file.tar.gz;
  
  # URIs with special characters
  withQuery = https://example.com?foo=bar&baz=qux;
  withFragment = https://example.com/page#section;
  withPort = http://localhost:8080/api;
}