about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/value-to-json.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-json.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-json.cc')
-rw-r--r--third_party/nix/src/libexpr/value-to-json.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/third_party/nix/src/libexpr/value-to-json.cc b/third_party/nix/src/libexpr/value-to-json.cc
index 3e5e025a27..a338d4eed7 100644
--- a/third_party/nix/src/libexpr/value-to-json.cc
+++ b/third_party/nix/src/libexpr/value-to-json.cc
@@ -73,10 +73,6 @@ void printValueAsJSON(EvalState& state, bool strict, Value& v,
       break;
     }
 
-    case tExternal:
-      v.external->printValueAsJSON(state, strict, out, context);
-      break;
-
     case tFloat:
       out.write(v.fpoint);
       break;
@@ -92,10 +88,4 @@ void printValueAsJSON(EvalState& state, bool strict, Value& v,
   printValueAsJSON(state, strict, v, out, context);
 }
 
-void ExternalValueBase::printValueAsJSON(EvalState& state, bool strict,
-                                         JSONPlaceholder& out,
-                                         PathSet& context) const {
-  throw TypeError(format("cannot convert %1% to JSON") % showType());
-}
-
 }  // namespace nix