nixpkgs/pkgs/development/php-packages/ast/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
356 B
Nix
Raw Normal View History

{ buildPecl, lib }:
buildPecl {
pname = "ast";
2021-12-08 05:12:31 +01:00
version = "1.0.16";
sha256 = "sha256-Rb2jS3gMRmHOd89lzYpQT7VlJtS0Vu3Ml9eRyG84ec4=";
2021-06-08 11:50:05 +02:00
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;
};
}