A slight fix for a crass mistake.

This commit is contained in:
zgrep 2018-07-21 09:28:12 -04:00
parent 467c42875e
commit 6fce3e8152
1 changed files with 5 additions and 3 deletions

View File

@ -9,6 +9,8 @@ let
want = filterAttrs (name: type: want = filterAttrs (name: type:
type == "directory" && (substring 0 1 name) != "." type == "directory" && (substring 0 1 name) != "."
) (readDir here); ) (readDir here);
in mapAttrs (name: type: in {
callPackage (import here/name) znur = mapAttrs (name: type:
) want callPackage (import here/name)
) want
}