don't import local paths to nix store
1 file changed, 1 insertion(+), 1 deletion(-)
jump to
M lib/default.nix → lib/default.nix
@@ -10,7 +10,7 @@ mkPathable = s: if s.type == "local" then - lib.path.append ../. s.outPath + toString (lib.path.append ../. s.outPath) else toString s.outPath ;