lib: Avoid double import

This commit is contained in:
John Ericson 2018-01-30 22:10:34 -05:00 committed by John Ericson
parent 2e4aded366
commit afb87a66b3

View file

@ -1,8 +1,8 @@
{ lib }:
let
inherit (lib) lists;
parse = import ./parse.nix { inherit lib; };
inherit (import ./inspect.nix { inherit lib; }) predicates;
inherit (lib.systems) parse;
inherit (lib.systems.inspect) predicates;
inherit (lib.attrsets) matchAttrs;
all = [