about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/value-to-xml.cc
diff options
context:
space:
mode:
authorKane York <kanepyork@gmail.com>2020-07-31T22·27-0700
committerkanepyork <rikingcoding@gmail.com>2020-08-01T18·54+0000
commit64f6bb695130e14bb376fa52a46c716c975020a4 (patch)
treec0882c2e6ad92465700a67a66249f023aa5627c0 /third_party/nix/src/libexpr/value-to-xml.cc
parent770034042a3e7cb7f3a9f7a271ab45e44b0d006c (diff)
feat(3p/nix): remove External values feature r/1527
External values are only useful when using the plugin framework, which we are not interested in carrying forward.

Reverts commit 320659b0cd161249c95e736c3fb309b1a73ea728

Change-Id: Ib4929c349bbb33f16224fc674e94c7b7d5953c6a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1505
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'third_party/nix/src/libexpr/value-to-xml.cc')
-rw-r--r--third_party/nix/src/libexpr/value-to-xml.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/third_party/nix/src/libexpr/value-to-xml.cc b/third_party/nix/src/libexpr/value-to-xml.cc
index aba6013f98..921973881f 100644
--- a/third_party/nix/src/libexpr/value-to-xml.cc
+++ b/third_party/nix/src/libexpr/value-to-xml.cc
@@ -163,11 +163,6 @@ static void printValueAsXML(EvalState& state, bool strict, bool location,
       break;
     }
 
-    case tExternal:
-      v.external->printValueAsXML(state, strict, location, doc, context,
-                                  drvsSeen);
-      break;
-
     case tFloat:
       doc.writeEmptyElement(
           "float", singletonAttrs("value", (format("%1%") % v.fpoint).str()));
@@ -178,13 +173,6 @@ static void printValueAsXML(EvalState& state, bool strict, bool location,
   }
 }
 
-void ExternalValueBase::printValueAsXML(EvalState& state, bool strict,
-                                        bool location, XMLWriter& doc,
-                                        PathSet& context,
-                                        PathSet& drvsSeen) const {
-  doc.writeEmptyElement("unevaluated");
-}
-
 void printValueAsXML(EvalState& state, bool strict, bool location, Value& v,
                      std::ostream& out, PathSet& context) {
   XMLWriter doc(true, out);