lib: move select.select -> select for backwards compat with old CLIs

This commit is contained in:
Michael Hoang
2025-04-25 17:27:04 +10:00
parent 28a508457c
commit 4c2584e246
3 changed files with 4 additions and 4 deletions

View File

@@ -30,6 +30,6 @@ lib.fix (clanLib: {
# Plain imports.
values = import ./introspection { inherit lib; };
jsonschema = import ./jsonschema { inherit lib; };
select = self.inputs.nix-select.lib;
inherit (self.inputs.nix-select.lib) parseSelector applySelectors select;
facts = import ./facts.nix { inherit lib; };
})