Skip to content

Commit 5a16547

Browse files
committed
Prevent double copying and work around an apparent Nix bug
Fixes #60.
1 parent 4f910c9 commit 5a16547

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ let
149149

150150
subdir = if key == lockFile.root then "" else node.locked.dir or "";
151151

152-
outPath = sourceInfo + ((if subdir == "" then "" else "/") + subdir);
152+
outPath = (builtins.storePath sourceInfo) + ((if subdir == "" then "" else "/") + subdir);
153153

154154
flake = import (outPath + "/flake.nix");
155155

0 commit comments

Comments
 (0)