about summary refs log tree commit diff
path: root/src/libexpr/primops.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/libexpr/primops.cc
parente5678b3435d44a610517246f95c7626d36965389 (diff)
* Remove those storePath attribute sets, we don't need 'em.
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r--src/libexpr/primops.cc13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index d82cc5870a..50712a7251 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -170,18 +170,7 @@ static void processBinding(EvalState & state, Expr e, Derivation & drv,
             ss.push_back(outPath);
         }
 
-        else if (a && evalString(state, a) == "storePath") {
-
-            a = queryAttr(e, "outPath");
-            if (!a) throw EvalError("output path missing");
-            /* !!! supports only single output path */
-            Path outPath = evalPath(state, a);
-
-            drv.inputSrcs.insert(outPath);
-            ss.push_back(outPath);
-        }
-
-        else throw TypeError("attribute sets in derivations must either be derivations or store paths");
+        else throw TypeError("attribute sets in derivations must be derivations");
     }
 
     else if (matchPath(e, s)) {