about summary refs log tree commit diff
path: root/pkgs/development/php-packages/vld/default.nix
blob: 8e5f7dec4039834084543dc2b0e5012287ded451 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 ];
  };
}