diff options
author | Vincent Ambo <mail@tazj.in> | 2022-02-07T23·13+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-02-08T17·21+0000 |
commit | 64b89b528794b3bd29e54a465696e3a7255f9c40 (patch) | |
tree | dd167b0c33d64640647c296352a2e92f3791ffe9 /third_party/grpc | |
parent | aa96c3bd833283af1a9bdb7e5a6787a4e9201b57 (diff) |
chore(3p): remove abseil_cpp, grpc, protobuf, re2 r/3795
We're now using the upstream versions of all of these with minor overrides, no separate nonsense required. Change-Id: I61ace7ccf7ff807ef3c7219b36e08629a2251699 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5246 Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'third_party/grpc')
-rw-r--r-- | third_party/grpc/default.nix | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/third_party/grpc/default.nix b/third_party/grpc/default.nix deleted file mode 100644 index bef5dd9d112f..000000000000 --- a/third_party/grpc/default.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ depot, pkgs, ... }: - -(pkgs.grpc.override { - protobuf = depot.third_party.protobuf; - stdenv = pkgs.fullLlvm11Stdenv; - abseil-cpp = depot.third_party.abseil_cpp; - re2 = depot.third_party.re2; -}).overrideAttrs (orig: rec { - cmakeFlags = orig.cmakeFlags ++ [ - "-DCMAKE_CXX_STANDARD_REQUIRED=ON" - "-DCMAKE_CXX_STANDARD=17" - ]; -}) |