at 22.05-pre 19 lines 448 B view raw
1{ buildPecl, lib, rabbitmq-c }: 2 3buildPecl { 4 pname = "amqp"; 5 6 version = "1.11.0beta"; 7 sha256 = "sha256-HbVLN6fg2htYZgAFw+IhYHP+XN8j7cTLG6S0YHHOC14="; 8 9 buildInputs = [ rabbitmq-c ]; 10 11 AMQP_DIR = rabbitmq-c; 12 13 meta = with lib; { 14 description = "PHP extension to communicate with any AMQP compliant server"; 15 license = licenses.php301; 16 homepage = "https://github.com/php-amqp/php-amqp"; 17 maintainers = teams.php.members; 18 }; 19}