From c36b350d8762bccc7a434bcbdd5587066f931061 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 17 Jul 2020 15:34:28 -0700 Subject: [PATCH] Links & feature comparison with require.nix, niv, flakes --- README | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/README b/README index 5c45107..46b1d14 100644 --- a/README +++ b/README @@ -27,8 +27,19 @@ The first "pin" command will add these fields to the file: The second "update" command applies these changes to your nix channels, like `nix-channel --update` does. -Advantages over nix-channel: - - * Deploy the exact same channel content to multiple machines. - * Store your pin file in revision control for more powerful rollback mechanism than `nix-channel --rollback`. - * Channel contents are verified by hash before being installed. +### Feature comparison + +| Feature | nix-channel | [require.nix][] | [niv][] | [flakes][] | pinch | +| ---------------------------- | :---------: | :-------------: | :-----: | :--------: | :---: | +| Same version across machines | - | yes | yes | yes | yes | +| Verifies hashes | - | ? | yes | yes | yes | +| Fetch from git | - | ? | yes | yes | yes | +| Fetch from git with ssh key | - | ? | yes | yes? | yes | +| command_not_found_handle | yes | ? | - | yes | yes | +| Verifies tarball == git repo | - | - | - | - | yes | +| Rejects force pushes | - | - | - | - | yes | +| Ready to use today | yes | - | yes | - | yes | + +[require.nix]: https://www.youtube.com/watch?v=DHOLjsyXPtM +[niv]: https://github.com/nmattia/niv +[flakes]: https://github.com/nixos/rfcs/pull/49 -- 2.44.1