Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
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 ];
|
|
};
|
|
}
|