23 lines
520 B
Nix
23 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;
|
||
|
};
|
||
|
}
|