mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
16 lines
357 B
Nix
16 lines
357 B
Nix
{ buildPecl, lib }:
|
|
|
|
buildPecl {
|
|
pname = "ast";
|
|
|
|
version = "1.0.12";
|
|
sha256 = "1mcfx989yrakixlsx2d8v6kyxawfwhig4mra9ccpjasfhad0d31x";
|
|
|
|
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;
|
|
};
|
|
}
|