1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-05 08:31:05 +01:00

flake: remove lib.<system>.helpers

Remove the deprecated <flake>.lib.<system>.helpers output, deprecated in
d39a09d05d
This commit is contained in:
Matt Sturgeon 2025-11-21 11:41:25 +00:00 committed by Gaétan Lepage
parent 51daa6bf06
commit 60817987a7

View file

@ -27,9 +27,6 @@
check = pkgs.callPackage ../lib/tests.nix { check = pkgs.callPackage ../lib/tests.nix {
inherit lib self system; inherit lib self system;
}; };
# NOTE: no longer needs to be per-system
helpers = lib.warn "nixvim: `<nixvim>.lib.${system}.helpers` has been moved to `<nixvim>.lib.nixvim` and no longer depends on a specific system" self.lib.nixvim;
} }
) )
); );