at 24.05-pre 23 lines 576 B view raw
1{ buildPecl, lib, fetchFromGitHub }: 2 3let 4 version = "1.1.0"; 5in buildPecl { 6 inherit version; 7 pname = "ast"; 8 9 src = fetchFromGitHub { 10 owner = "nikic"; 11 repo = "php-ast"; 12 rev = "v${version}"; 13 sha256 = "sha256-e9J6O4A+8xRBlR9m4OK1kTVpzgzsviD0Eqi0iY4AgkY="; 14 }; 15 16 meta = with lib; { 17 changelog = "https://github.com/nikic/php-ast/releases/tag/v${version}"; 18 description = "Exposes the abstract syntax tree generated by PHP"; 19 license = licenses.bsd3; 20 homepage = "https://pecl.php.net/package/ast"; 21 maintainers = teams.php.members; 22 }; 23}