diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-10-17T12·15+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-10-17T12·15+0000 |
commit | 822dba2210a03144510df357c4c38229b1e4c211 (patch) | |
tree | 50fab5e4dc666bb425dea02c759b81ae1f8798d8 /src/nix-env | |
parent | dfc042a0c1786596554f30d628555845ab4539d8 (diff) |
* Maintain the references for the user environment properly.
Diffstat (limited to 'src/nix-env')
-rw-r--r-- | src/nix-env/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc index f6b3cbdfb443..f67a0768979b 100644 --- a/src/nix-env/main.cc +++ b/src/nix-env/main.cc @@ -200,7 +200,7 @@ static void createUserEnv(EvalState & state, const DrvInfos & elems, makeBind(toATerm("derivations"), makeList(ATreverse(inputs)), makeNoPos()), makeBind(toATerm("manifest"), - makeStr(manifestFile), makeNoPos()) + makeStr(manifestFile, singleton<PathSet>(manifestFile)), makeNoPos()) ))); /* Instantiate it. */ |