This commit is contained in:
zgrep 2018-07-21 09:58:26 -04:00
parent 63795565a6
commit a22383b069
1 changed files with 1 additions and 1 deletions

View File

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