lib: Avoid double import

authored by John Ericson and committed by John Ericson afb87a66 2e4aded3

+2 -2
+2 -2
lib/systems/doubles.nix
··· 1 1 { lib }: 2 2 let 3 3 inherit (lib) lists; 4 - parse = import ./parse.nix { inherit lib; }; 5 - inherit (import ./inspect.nix { inherit lib; }) predicates; 4 + inherit (lib.systems) parse; 5 + inherit (lib.systems.inspect) predicates; 6 6 inherit (lib.attrsets) matchAttrs; 7 7 8 8 all = [