I'm too tired to make educated guesses anymore.

This commit is contained in:
zgrep 2018-07-21 10:46:55 -04:00
parent 95486c9c9e
commit 6acc67df08
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 (here + "/" + name))
) want
in (mapAttrs (name: type:
callPackage (import ((toString here) + "/" + (toString name)))
) want)