nixpkgs/pkgs/development/php-packages/phpspy/default.nix
2023-11-29 10:28:13 +01:00

49 lines
969 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, php
, testers
, phpPackages
}:
stdenv.mkDerivation (finalAttrs: {
pname = "phpspy";
version = "0.6.0";
src = fetchFromGitHub {
owner = "adsr";
repo = "phpspy";
rev = "v${finalAttrs.version}";
hash = "sha256-iQOeZLHRc5yUgXc6xz52t/6oc07eZfH5ZgzSdJBcaak=";
fetchSubmodules = true;
};
nativeBuildInputs = [ php.unwrapped ];
env.USE_ZEND = 1;
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp phpspy $out/bin
runHook postInstall
'';
passthru.tests.version = testers.testVersion {
version = "v${finalAttrs.version}";
package = phpPackages.phpspy;
command = "phpspy -v";
};
meta = with lib; {
description = "Low-overhead sampling profiler for PHP";
homepage = "https://github.com/adsr/phpspy";
license = licenses.mit;
mainProgram = "phpspy";
maintainers = with maintainers; [ gaelreyrol ];
platforms = [ "x86_64-linux" ];
};
})