Add notes about Nix patch and using compatible Nix version
Dependencies
- [2]
ALEHIM7QFix plugin path in readme - [3]
NQT3HEZHAdd README.md - [4]
SNHMHWHLAdd reference to nix-extras package - [5]
ABMNOOZ7nix.settings instead of nix.options
Change contents
- edit in README.md at line 19
NB: The fetcher from this plugin does not automatically get used when runningnix commands (e.g. `nix build`) in a Pijul repository, since this is hardcodedfor Git and Mercurial in Nix. For this, I have a patch that adds the relevantcode for Pijul, it's available as[nix-pijul](https://git.sr.ht/~dblsaiko/nix-extras/tree/master/item/packages/nix-pijul.nix)in my *nix-extras* flake. It replaces the normal Nix installation and can beused in addition to this plugin. - replacement in README.md at line 35
Add the built pijul.so module to plugin-files in nix.conf.Add the built pijul.so module to plugin-files in nix.conf. Make sure it is builtfor the Nix version you are using it with. - replacement in README.md at line 38
NixOS:NixOS (with the nix-extras overlay): - replacement in README.md at line 41
{nix.settings.plugin-files = "${nix-plugin-pijul}/lib/nix/plugins/pijul.so";{pkgs, config, ...}: {nix.settings.plugin-files = "${pkgs.nix-plugin-pijul.override { nix = config.nix.package; }}/lib/nix/plugins/pijul.so";# Optional: Use the patched Nix to automatically use Pijul fetcher in local# repositoriesnix.package = pkgs.nix-pijul;