mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
flake: warn when lib.<system>.helpers
is used
This commit is contained in:
parent
4b3b67fb6f
commit
d39a09d05d
1 changed files with 2 additions and 2 deletions
|
@ -21,13 +21,13 @@
|
||||||
}
|
}
|
||||||
// lib.genAttrs config.systems (
|
// lib.genAttrs config.systems (
|
||||||
lib.flip withSystem (
|
lib.flip withSystem (
|
||||||
{ pkgs, ... }:
|
{ pkgs, system, ... }:
|
||||||
{
|
{
|
||||||
# NOTE: this is the publicly documented flake output we've had for a while
|
# NOTE: this is the publicly documented flake output we've had for a while
|
||||||
check = pkgs.callPackage ../lib/tests.nix { inherit self; };
|
check = pkgs.callPackage ../lib/tests.nix { inherit self; };
|
||||||
|
|
||||||
# NOTE: no longer needs to be per-system
|
# NOTE: no longer needs to be per-system
|
||||||
helpers = self.lib.nixvim;
|
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;
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue