mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
phpExtensions.vld: init at 0.18.0
This commit is contained in:
parent
7b66d3b9cb
commit
f17751d00d
2 changed files with 32 additions and 0 deletions
30
pkgs/development/php-packages/vld/default.nix
Normal file
30
pkgs/development/php-packages/vld/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, buildPecl
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
let
|
||||
version = "0.18.0";
|
||||
in buildPecl {
|
||||
inherit version;
|
||||
|
||||
pname = "vld";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "derickr";
|
||||
repo = "vld";
|
||||
rev = version;
|
||||
hash = "sha256-1xMStPM3Z5qIkrRGfCKcYT6UdF1j150nt7IleirjdBM=";
|
||||
};
|
||||
|
||||
# Tests relies on PHP 7.0
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/derickr/vld/releases/tag/${version}";
|
||||
description = "The Vulcan Logic Dumper hooks into the Zend Engine and dumps all the opcodes (execution units) of a script.";
|
||||
homepage = "https://github.com/derickr/vld";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ gaelreyrol ];
|
||||
};
|
||||
}
|
|
@ -304,6 +304,8 @@ lib.makeScope pkgs.newScope (self: with self; {
|
|||
|
||||
uv = callPackage ../development/php-packages/uv { };
|
||||
|
||||
vld = callPackage ../development/php-packages/vld { };
|
||||
|
||||
xdebug = callPackage ../development/php-packages/xdebug { };
|
||||
|
||||
yaml = callPackage ../development/php-packages/yaml { };
|
||||
|
|
Loading…
Reference in a new issue