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:
type == "directory" && (substring 0 1 name) != "."
) (readDir here);
in mapAttrs (name: type:
callPackage (import here/name)
) want
in {
znur = mapAttrs (name: type:
callPackage (import here/name)
) want
}