bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
22 lines
520 B
Nix
22 lines
520 B
Nix
{ buildPecl, curl, fetchFromGitHub, lib, pcre2 }:
|
|
|
|
buildPecl rec {
|
|
pname = "ddtrace";
|
|
version = "0.70.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DataDog";
|
|
repo = "dd-trace-php";
|
|
rev = "${version}";
|
|
sha256 = "sha256-AYRBzE0Detg/IHXYutZUfPRMtfthxdkSjqD0M+VcTpY=";
|
|
};
|
|
|
|
buildInputs = [ curl pcre2 ];
|
|
|
|
meta = with lib; {
|
|
description = "Datadog Tracing PHP Client";
|
|
homepage = "https://github.com/DataDog/dd-trace-php";
|
|
license = licenses.apsl20;
|
|
maintainers = teams.php.members;
|
|
};
|
|
}
|