Maybe this will work.

This commit is contained in:
zgrep 2018-07-21 10:49:47 -04:00
parent 6acc67df08
commit c5e58ca1b9
1 changed files with 3 additions and 3 deletions

View File

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