Merge pull request #5516 from benley/fix-matchAttrs

lib: Fix matchAttrs by importing builtins.length
This commit is contained in:
wmertens 2015-01-01 09:52:07 +01:00
commit fc75f738af

View file

@ -1,7 +1,7 @@
# Operations on attribute sets.
with {
inherit (builtins) head tail;
inherit (builtins) head tail length;
inherit (import ./trivial.nix) or;
inherit (import ./default.nix) fold;
inherit (import ./strings.nix) concatStringsSep;