depot/third_party/nixpkgs/pkgs/development/php-packages/phpspy/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

49 lines
977 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" ];
};
})