Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-28 | Merge branch 'minimal-logger' of https://github.com/Ma27/nix | Eelco Dolstra | |
2020-08-25 | Move import docs | Eelco Dolstra | |
2020-08-24 | Generate builtins section of the manual | Eelco Dolstra | |
2020-08-24 | Move primop docs inline | Eelco Dolstra | |
This makes them available to 'nix repl'. | |||
2020-08-24 | Allow primops to have Markdown documentation | Eelco Dolstra | |
2020-08-20 | Allow 'nix' subcommands to provide docs in Markdown format | Eelco Dolstra | |
2020-08-20 | List deprecated option aliases in the docs | Eelco Dolstra | |
2020-08-19 | Consistency | Eelco Dolstra | |
2020-08-19 | Generate the nix.conf docs from the source code | Eelco Dolstra | |
This means we don't have two (divergent) sets of option descriptions anymore. | |||
2020-08-19 | Improve margins between sections | Eelco Dolstra | |
The default CSS puts almost no space between sections, but a lot of space between subsections. This flips that around. | |||
2020-08-18 | Improve nix.1 manpage generator | Eelco Dolstra | |
2020-08-17 | Start generation of the nix.1 manpage | Eelco Dolstra | |
2020-08-17 | Merge remote-tracking branch 'origin/master' into markdown | Eelco Dolstra | |
2020-08-06 | Add hashed-mirrors back | Matthew Bauer | |
Some users have their own hashed-mirrors setup, that is used to mirror things in addition to what’s available on tarballs.nixos.org. Although this should be feasable to do with a Binary Cache, it’s not always easy, since you have to remember what "name" each of the tarballs has. Continuing to support hashed-mirrors is cheap, so it’s best to leave support in Nix. Note that NIX_HASHED_MIRRORS is also supported in Nixpkgs through fetchurl.nix. Note that this excludes tarballs.nixos.org from the default, as in \#3689. All of these are available on cache.nixos.org. | |||
2020-07-31 | Merge remote-tracking branch 'origin/master' into markdown | Eelco Dolstra | |
2020-07-31 | console -> shell | Eelco Dolstra | |
2020-07-31 | Enable syntax highlighting | Eelco Dolstra | |
2020-07-30 | Merge remote-tracking branch 'origin/master' into substitute-other-storedir | Matthew Bauer | |
2020-07-26 | libutil/logging: extend `internal-json` logger to make it more machine-readable | Maximilian Bosch | |
The new error-format is pretty nice from a UX point-of-view, however it's fairly hard to parse the output e.g. for editor plugins such as vim-ale[1] that use `nix-instantiate --parse` to determine syntax errors in Nix expression files. This patch extends the `internal-json` logger by adding the fields `line`, `column` and `file` to easily locate an error in a file and the field `raw_msg` which contains the error-message itself without code-lines and additional helpers. An exemplary output may look like this: ``` [nix-shell]$ ./inst/bin/nix-instantiate ~/test.nix --log-format minimal {"action":"msg","column":1,"file":"/home/ma27/test.nix","level":0,"line":4,"raw_msg":"syntax error, unexpected IF, expecting $end","msg":"<full error-msg with code-lines etc>"} ``` [1] https://github.com/dense-analysis/ale | |||
2020-07-24 | Remove DocBook manual | Eelco Dolstra | |
2020-07-24 | Fix internal links | Eelco Dolstra | |
2020-07-24 | Fix some dangling references | Eelco Dolstra | |
2020-07-24 | Fix nix-copy-closure manpage | Eelco Dolstra | |
2020-07-24 | Move figures | Eelco Dolstra | |
2020-07-24 | Clean up the manpages | Eelco Dolstra | |
2020-07-24 | Get rid of footnotes | Eelco Dolstra | |
Markdown doesn't support them. | |||
2020-07-23 | Sigh | Eelco Dolstra | |
2020-07-23 | <replaceable> -> <emphasis> | Eelco Dolstra | |
Pandoc doesn't know <replaceable> so let's force it to be rendered as italics. | |||
2020-07-23 | <simplesect> -> <section> | Eelco Dolstra | |
Pandoc silently ignores <simplesect>... | |||
2020-07-23 | Get rid of <figure> | Eelco Dolstra | |
2020-07-23 | Get rid of <example> | Eelco Dolstra | |
Markdown doesn't have floats so we can't have this. | |||
2020-07-23 | Get rid of callouts since Markdown doesn't support them | Eelco Dolstra | |
2020-07-23 | Install all manpages | Eelco Dolstra | |
2020-07-23 | Convert commands | Eelco Dolstra | |
2020-07-23 | Convert nix.conf manpage | Eelco Dolstra | |
2020-07-23 | Reconvert | Eelco Dolstra | |
2020-07-23 | <envar> -> <literal> | Eelco Dolstra | |
2020-07-23 | Remove libxml2 / libxslt prerequisites | Eelco Dolstra | |
2020-07-23 | Pandoc conversion | Eelco Dolstra | |
2020-07-23 | Fix link | Eelco Dolstra | |
2020-07-23 | Remove subtitles | Eelco Dolstra | |
2020-07-23 | Typo | Eelco Dolstra | |
2020-07-23 | Remove references to xmllint | Eelco Dolstra | |
2020-07-23 | Use mdbook | Eelco Dolstra | |
2020-07-23 | Markdown test | Eelco Dolstra | |
2020-07-23 | Remove unused file | Eelco Dolstra | |
2020-07-20 | Update doc/manual/hacking.xml | Jörg Thalheim | |
Co-authored-by: Eelco Dolstra <edolstra@gmail.com> | |||
2020-07-20 | README: improve development docs | Jörg Thalheim | |
2020-06-24 | Merge remote-tracking branch 'origin/master' into substitute-other-storedir | Matthew Bauer | |
2020-06-23 | docs/installer: add correct curl flags | Jörg Thalheim | |
also see https://nixos.org/download.html |