tvl-depot/third_party/cpp/googleapis/default.nix
Vincent Ambo 7e6b3e1b42 chore: Add meta.ci=false to various broken projects
These projects, which are not currently included in CI runs, don't
build at the moment.

Upcoming logic changes would mean that we would start including them
in CI, which is undesirable until they're fixed - but I'm not going to
be doing that now.

Change-Id: I7c337e098be8bff00db6d99fc7236a695f5a85f5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1850
Tested-by: BuildkiteCI
Reviewed-by: kanepyork <rikingcoding@gmail.com>
2020-08-26 23:49:32 +00:00

27 lines
690 B
Nix

# This library contains generated gRPC implementations for Google's
# public libraries.
{ pkgs, ... }:
let
inherit (pkgs) fetchFromGitHub;
stdenv = with pkgs; overrideCC pkgs.stdenv clang_10;
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;
}