Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
66f3179d41
2 changed files with 12 additions and 2 deletions
|
@ -40,7 +40,17 @@ def process_flake(flake: str) -> None:
|
|||
# call this function with the flake file
|
||||
process_flake(dep_flake)
|
||||
# update lockfile
|
||||
cmd = ["nix", "flake", "lock", "--update-input", dep_name]
|
||||
cmd = [
|
||||
"nix",
|
||||
"--extra-experimental-features",
|
||||
"nix-command",
|
||||
"--extra-experimental-features",
|
||||
"flakes",
|
||||
"flake",
|
||||
"lock",
|
||||
"--update-input",
|
||||
dep_name,
|
||||
]
|
||||
subprocess.run(cmd, cwd=dir)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue