diff options
author | tv <tv@krebsco.de> | 2022-12-09 00:30:08 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2022-12-09 01:34:31 +0100 |
commit | e6863fe8c68ff3ad704b1eef4b71fb4870b83bdf (patch) | |
tree | 53250788249f1850053fa7ee1e138bb423e461fb /lib | |
parent | eb3285feea223f3aa2a54beeccbe3a9135067616 (diff) |
lib: add isNixDirEntry
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 d65c891a3..ad3a78a04 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 = |