forked from mirrors/nixpkgs
16 lines
357 B
Nix
16 lines
357 B
Nix
{ buildPecl, lib }:
|
|
|
|
buildPecl {
|
|
pname = "ast";
|
|
|
|
version = "1.0.10";
|
|
sha256 = "13s5r1szd80g1mqickghdd38mvjkwss221322mmbrykcfgp4fs30";
|
|
|
|
meta = with lib; {
|
|
description = "Exposes the abstract syntax tree generated by PHP";
|
|
license = licenses.bsd3;
|
|
homepage = "https://pecl.php.net/package/ast";
|
|
maintainers = teams.php.members;
|
|
};
|
|
}
|