Skip to content

Commit 9f229b2

Browse files
committed
flake.nix: fix bug resulting from rampant overloading of the identifier "lockfile"
1 parent d9c7a1b commit 9f229b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
, # the command to produce the dependencies
2525
command
2626
}:
27-
let lockfile = ((import ./default.nix { inherit pkgs; }).lockfile { inherit src lockfile mavenRepos; });
27+
let locked = ((import ./default.nix { inherit pkgs; }).lockfile { inherit src lockfile mavenRepos; });
2828
in
2929
{
30-
locker = lockfile.commandLocker command;
31-
homeDirectory = lockfile.homeDirectory;
32-
shellEnv = lockfile.shellEnv;
30+
locker = locked.commandLocker command;
31+
homeDirectory = locked.homeDirectory;
32+
shellEnv = locked.shellEnv;
3333
};
3434
};
3535

0 commit comments

Comments
 (0)