Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 32 lines 684 B view raw
1{ 2 lib, 3 buildPecl, 4 fetchFromGitHub, 5}: 6 7let 8 version = "0.18.0"; 9in 10buildPecl { 11 inherit version; 12 13 pname = "vld"; 14 15 src = fetchFromGitHub { 16 owner = "derickr"; 17 repo = "vld"; 18 rev = version; 19 hash = "sha256-1xMStPM3Z5qIkrRGfCKcYT6UdF1j150nt7IleirjdBM="; 20 }; 21 22 # Tests relies on PHP 7.0 23 doCheck = false; 24 25 meta = { 26 changelog = "https://github.com/derickr/vld/releases/tag/${version}"; 27 description = "Vulcan Logic Dumper hooks into the Zend Engine and dumps all the opcodes (execution units) of a script"; 28 homepage = "https://github.com/derickr/vld"; 29 license = lib.licenses.bsd2; 30 maintainers = with lib.maintainers; [ gaelreyrol ]; 31 }; 32}