From 748d8310fa7e044ad4c950ff38e31309ea3f606d Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Sun, 5 May 2024 15:32:20 -0700 Subject: Fix the pages in the manual for Lix This doesn't comprehensively fix everything outdated in the manual, or make the manual greatly better, but it does note down where at least jade noticed it was wrong, and it does fix all the instances of referencing Nix to conform to the style guide to the best of our ability. A lot of things have been commented out for being wrong, and there are three types of FIXME introduced: - FIXME(Lix): generically Lix needs to fix it - FIXME(Qyriad): re https://git.lix.systems/lix-project/lix/issues/215 - FIXME(meson): docs got outdated by meson changes and need rewriting I did fix a bunch of it that I could, but there could certainly be mistakes and this is definitely just an incremental improvement. Fixes: https://git.lix.systems/lix-project/lix/issues/266 Change-Id: I5993c4603d7f026a887089fce77db08394362135 --- doc/manual/src/protocols/protocols.md | 2 +- doc/manual/src/protocols/tarball-fetcher.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/manual/src/protocols') diff --git a/doc/manual/src/protocols/protocols.md b/doc/manual/src/protocols/protocols.md index d6bf1d809..1f77f98a2 100644 --- a/doc/manual/src/protocols/protocols.md +++ b/doc/manual/src/protocols/protocols.md @@ -1,4 +1,4 @@ # Protocols This chapter documents various developer-facing interfaces provided by -Nix. +Lix. diff --git a/doc/manual/src/protocols/tarball-fetcher.md b/doc/manual/src/protocols/tarball-fetcher.md index 274fa6d63..3527333f2 100644 --- a/doc/manual/src/protocols/tarball-fetcher.md +++ b/doc/manual/src/protocols/tarball-fetcher.md @@ -23,11 +23,11 @@ Link: ; rel="immutable" *flakeref* must be a tarball flakeref. It can contain the tarball flake attributes `narHash`, `rev`, `revCount` and `lastModified`. If `narHash` is included, its value must be the NAR hash of the unpacked tarball (as computed via -`nix hash path`). Nix checks the contents of the returned tarball +`nix hash path`). Lix checks the contents of the returned tarball against the `narHash` attribute. The `rev` and `revCount` attributes are useful when the tarball flake is a mirror of a fetcher type that has those attributes, such as Git or GitHub. They are not checked by -Nix. +Lix. ``` Link: