pluginupdate.py: fix compatibility with nix 2.4

This commit is contained in:
figsoda 2021-11-11 13:39:35 -05:00 committed by Matthieu Coudron
parent e29d818477
commit 5aaa5f5e75
4 changed files with 23 additions and 7 deletions

View file

@ -305,7 +305,7 @@ class CleanEnvironment(object):
def get_current_plugins(editor: Editor) -> List[Plugin]:
with CleanEnvironment():
cmd = ["nix", "eval", "--json", editor.get_plugins]
cmd = ["nix", "eval", "--impure", "--json", "--expr", editor.get_plugins]
log.debug("Running command %s", cmd)
out = subprocess.check_output(cmd)
data = json.loads(out)