diff options
Diffstat (limited to 'src/nix-env')
-rw-r--r-- | src/nix-env/main.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc index b64bc281afcf..3cb6b02c1f98 100644 --- a/src/nix-env/main.cc +++ b/src/nix-env/main.cc @@ -205,7 +205,8 @@ void createUserEnv(EvalState & state, const DrvInfos & drvs, /* Also write a copy of the list of inputs to the store; we need it for future modifications of the environment. */ - Path inputsFile = addTextToStore("env-inputs", atPrint(inputs2)); + Path inputsFile = addTextToStore("env-inputs", atPrint(inputs2), + PathSet() /* !!! incorrect */); Expr topLevel = makeCall(envBuilder, makeAttrs(ATmakeList3( makeBind(toATerm("system"), |