472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
34 lines
777 B
Nix
34 lines
777 B
Nix
{
|
|
lib,
|
|
buildPecl,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
let
|
|
version = "1.1.0";
|
|
in
|
|
buildPecl rec {
|
|
inherit version;
|
|
pname = "opentelemetry";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "open-telemetry";
|
|
repo = "opentelemetry-php-instrumentation";
|
|
rev = version;
|
|
hash = "sha256-X3rGzKDI16W21O9BaCuvVCreuce6is+URFSa1FNcznM=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/ext";
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-parentheses-equality";
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/open-telemetry/opentelemetry-php-instrumentation/releases/tag/${version}";
|
|
description = "OpenTelemetry PHP auto-instrumentation extension";
|
|
homepage = "https://opentelemetry.io/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ gaelreyrol ];
|
|
};
|
|
}
|