10e2de4210
So it can be automatically updated with `nix-update`
29 lines
633 B
Nix
29 lines
633 B
Nix
{ buildPecl, lib, fetchFromGitHub }:
|
|
|
|
let
|
|
version = "3.2.0";
|
|
in buildPecl {
|
|
inherit version;
|
|
|
|
pname = "xdebug";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xdebug";
|
|
repo = "xdebug";
|
|
rev = version;
|
|
sha256 = "sha256-GQB69aETp8STyT4GHQQSPJBVEynWifbmGQXUeISvLRI=";
|
|
};
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
zendExtension = true;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/xdebug/xdebug/releases/tag/${version}";
|
|
description = "Provides functions for function traces and profiling";
|
|
license = licenses.php301;
|
|
homepage = "https://xdebug.org/";
|
|
maintainers = teams.php.members;
|
|
};
|
|
}
|