about summary refs log tree commit diff
path: root/src/nix-env/main.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-08-25T17·09+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-08-25T17·09+0000
commit4b66cebe7bf1a8c03fb8f1e0052c19e91820c66c (patch)
treed6d3cf8e85ecea504d6e542b5272338266c928ec /src/nix-env/main.cc
parente5678b3435d44a610517246f95c7626d36965389 (diff)
* Remove those storePath attribute sets, we don't need 'em.
Diffstat (limited to 'src/nix-env/main.cc')
-rw-r--r--src/nix-env/main.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc
index 284730c04293..b3caaeac8277 100644
--- a/src/nix-env/main.cc
+++ b/src/nix-env/main.cc
@@ -192,12 +192,7 @@ static void createUserEnv(EvalState & state, const DrvInfos & elems,
         makeBind(toATerm("derivations"),
             makeList(ATreverse(inputs)), makeNoPos()),
         makeBind(toATerm("manifest"),
-            makeAttrs(ATmakeList2(
-                makeBind(toATerm("type"),
-                    makeStr(toATerm("storePath")), makeNoPos()),
-                makeBind(toATerm("outPath"),
-                    makePath(toATerm(manifestFile)), makeNoPos())
-                )), makeNoPos())
+            makePath(toATerm(manifestFile)), makeNoPos())
         )));
 
     /* Instantiate it. */