nixpkgs/pkgs/development/php-packages/spx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
914 B
Nix
Raw Normal View History

2023-10-15 08:52:02 +00:00
{ buildPecl, lib, fetchFromGitHub, zlib }:
let
2024-01-19 07:34:19 +00:00
version = "0.4.15";
2023-10-15 08:52:02 +00:00
in buildPecl {
inherit version;
pname = "spx";
2023-10-15 08:52:02 +00:00
src = fetchFromGitHub {
owner = "NoiseByNorthwest";
repo = "php-spx";
rev = "v${version}";
2024-01-19 07:34:19 +00:00
hash = "sha256-gw6wbPt1Qy0vNfT0flq7bxpnGU3SgJvPVhk8H0Imvx4=";
2023-10-15 08:52:02 +00:00
};
configureFlags = [
"--with-zlib-dir=${zlib.dev}"
];
preConfigure = ''
substituteInPlace Makefile.frag \
--replace '$(INSTALL_ROOT)$(prefix)/share/misc/php-spx/assets/web-ui' '${placeholder "out"}/share/misc/php-spx/assets/web-ui'
'';
meta = {
changelog = "https://github.com/NoiseByNorthwest/php-spx/releases/tag/${version}";
description = "A simple & straight-to-the-point PHP profiling extension with its built-in web UI";
homepage = "https://github.com/NoiseByNorthwest/php-spx";
license = lib.licenses.php301;
maintainers = with lib.maintainers; [ drupol ];
};
}