Merge pull request #5516 from benley/fix-matchAttrs

lib: Fix matchAttrs by importing builtins.length

wmertens fc75f738 cd833ea6

+1 -1
+1 -1
lib/attrsets.nix
··· 1 1 # Operations on attribute sets. 2 2 3 3 with { 4 - inherit (builtins) head tail; 4 + inherit (builtins) head tail length; 5 5 inherit (import ./trivial.nix) or; 6 6 inherit (import ./default.nix) fold; 7 7 inherit (import ./strings.nix) concatStringsSep;