mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
16 lines
355 B
Nix
16 lines
355 B
Nix
{ buildPecl, lib }:
|
|
|
|
buildPecl {
|
|
pname = "ast";
|
|
|
|
version = "1.1.0";
|
|
sha256 = "sha256-7j1PZ+JNguTTQIBqJAUgEuSVTSIxIpSTd2ZUJ0Q+bRM=";
|
|
|
|
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;
|
|
};
|
|
}
|