diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/default.nix | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/lib/default.nix b/lib/default.nix index d65c891..ad3a78a 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -96,11 +96,11 @@ let            in              nameValuePair (toPackageName name) (f path))            (attrNames -            (filterAttrs -              (name: type: -                (type == "regular" && hasSuffix ".nix" name && name != "default.nix") || -                (type == "directory" && !hasPrefix "." name)) -              (readDir dirPath)))); +            (filterAttrs isNixDirEntry (readDir dirPath)))); + +    isNixDirEntry = name: type: +      (type == "regular" && hasSuffix ".nix" name && name != "default.nix") || +      (type == "directory" && !hasPrefix "." name);      # https://tools.ietf.org/html/rfc5952      normalize-ip6-addr = | 
