don't import local paths to nix store
Alan Pearce alan@alanpearce.eu
Sat, 18 May 2024 18:36:00 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
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 ;