Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
85 lines
1.9 KiB
Nix
85 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, gtest
|
|
, protobuf
|
|
, curl
|
|
, grpc
|
|
, prometheus-cpp
|
|
, nlohmann_json
|
|
, nix-update-script
|
|
}:
|
|
|
|
let
|
|
opentelemetry-proto = fetchFromGitHub {
|
|
owner = "open-telemetry";
|
|
repo = "opentelemetry-proto";
|
|
rev = "v1.3.2";
|
|
hash = "sha256-bkVqPSVhyMHrmFvlI9DTAloZzDozj3sefIEwfW7OVrI=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "opentelemetry-cpp";
|
|
version = "1.16.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "open-telemetry";
|
|
repo = "opentelemetry-cpp";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-31zwIZ4oehhfn+oCyg8VQTurPOmdgp72plH1Pf/9UKQ=";
|
|
};
|
|
|
|
patches = [
|
|
./0001-Disable-tests-requiring-network-access.patch
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin ./0002-Disable-segfaulting-test-on-Darwin.patch;
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
curl
|
|
grpc
|
|
nlohmann_json
|
|
prometheus-cpp
|
|
protobuf
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [
|
|
gtest
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DWITH_OTLP_HTTP=ON"
|
|
"-DWITH_OTLP_GRPC=ON"
|
|
"-DWITH_ABSEIL=ON"
|
|
"-DWITH_PROMETHEUS=ON"
|
|
"-DWITH_ELASTICSEARCH=ON"
|
|
"-DWITH_ZIPKIN=ON"
|
|
"-DWITH_BENCHMARK=OFF"
|
|
"-DOTELCPP_PROTO_PATH=${opentelemetry-proto}"
|
|
];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/lib/cmake/opentelemetry-cpp/opentelemetry-cpp-target.cmake \
|
|
--replace-fail "\''${_IMPORT_PREFIX}/include" "$dev/include"
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "OpenTelemetry C++ Client Library";
|
|
homepage = "https://github.com/open-telemetry/opentelemetry-cpp";
|
|
license = [ lib.licenses.asl20 ];
|
|
maintainers = with lib.maintainers; [ jfroche ];
|
|
platforms = lib.platforms.linux;
|
|
# https://github.com/protocolbuffers/protobuf/issues/14492
|
|
broken = !(stdenv.buildPlatform.canExecute stdenv.hostPlatform);
|
|
};
|
|
})
|