diff options
Diffstat (limited to 'third_party/cpp/googleapis/default.nix')
-rw-r--r-- | third_party/cpp/googleapis/default.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/third_party/cpp/googleapis/default.nix b/third_party/cpp/googleapis/default.nix deleted file mode 100644 index 32f7d6f9bc1d..000000000000 --- a/third_party/cpp/googleapis/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -# This library contains generated gRPC implementations for Google's -# public libraries. -{ pkgs, ... }: - -let - inherit (pkgs) fetchFromGitHub; - stdenv = with pkgs; overrideCC pkgs.stdenv clang_11; -in stdenv.mkDerivation { - name = "googleapis-cpp"; - src = ./.; - - GOOGLEAPIS_DIR = fetchFromGitHub { - owner = "googleapis"; - repo = "googleapis"; - rev = "0aba1900ffef672ec5f0da677cf590ee5686e13b"; - sha256 = "1174mvipmzap4h8as1cl44y1kq7ikipdicnmnswv5yswgkwla84c"; - }; - - buildInputs = with pkgs; [ - c-ares c-ares.cmake-config grpc protobuf openssl zlib - ]; - - nativeBuildInputs = with pkgs; [ cmake pkgconfig ]; - - # Builds are failing, that's not good. - meta.ci = false; -} |