chore(flake): rename lib
-> helpers
Prevents name clashing with `nixpkgs.lib`
This commit is contained in:
parent
177babd497
commit
e8e005029d
2 changed files with 2 additions and 4 deletions
|
@ -67,10 +67,8 @@
|
|||
} @ inputs:
|
||||
let
|
||||
inherit (self) outputs;
|
||||
inherit ((import ./lib/default.nix) { lib = nixpkgs.lib; })
|
||||
recurseDir
|
||||
hasFiles
|
||||
hasDirectories;
|
||||
helpers = (import ./lib/helpers.nix) { lib = nixpkgs.lib; };
|
||||
inherit (helpers) recurseDir hasFiles hasDirectories;
|
||||
forAllSystems = nixpkgs.lib.genAttrs [
|
||||
"aarch64-linux"
|
||||
"i686-linux"
|
||||
|
|
Loading…
Reference in a new issue