We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c7a1b commit 9f229b2Copy full SHA for 9f229b2
flake.nix
@@ -24,12 +24,12 @@
24
, # the command to produce the dependencies
25
command
26
}:
27
- let lockfile = ((import ./default.nix { inherit pkgs; }).lockfile { inherit src lockfile mavenRepos; });
+ let locked = ((import ./default.nix { inherit pkgs; }).lockfile { inherit src lockfile mavenRepos; });
28
in
29
{
30
- locker = lockfile.commandLocker command;
31
- homeDirectory = lockfile.homeDirectory;
32
- shellEnv = lockfile.shellEnv;
+ locker = locked.commandLocker command;
+ homeDirectory = locked.homeDirectory;
+ shellEnv = locked.shellEnv;
33
};
34
35
0 commit comments