I should think of better commit messages.

This commit is contained in:
zgrep 2018-07-21 10:51:16 -04:00
parent c5e58ca1b9
commit 2cb892f7a8
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
let
inherit (pkgs) callPackage;
inherit (pkgs.lib) filterAttrs mapAttrs;
inherit (builtins) substring readDir;
inherit (builtins) substring readDir toString;
here = ./.;
@ -10,5 +10,5 @@ let
type == "directory" && (substring 0 1 name) != "."
) (readDir here);
in mapAttrs (name: type:
callPackage (here/name) {}
callPackage ((toString here) + "/" + (toString name)) {}
) want