diff options
Diffstat (limited to 'src/nix-env/main.cc')
-rw-r--r-- | src/nix-env/main.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc index 50ff0b19e9fc..c57f03cce007 100644 --- a/src/nix-env/main.cc +++ b/src/nix-env/main.cc @@ -213,8 +213,7 @@ void createUserEnv(EvalState & state, const DrvInfos & drvs, /* Realise the resulting store expression. */ debug(format("realising user environment")); - Path nfPath = normaliseStoreExpr(topLevelDrv.drvPath); - realiseClosure(nfPath); + Path nfPath = realiseStoreExpr(topLevelDrv.drvPath); /* Switch the current user environment to the output path. */ debug(format("switching to new user environment")); |