Error to install swoole and redis with nixpacks.

My nixpacks.toml:
[phases.setup]
nixPkgs = [
    "python311Packages.supervisor",
    "nano",
    "less",
    "ghostscript",
    "php83Extensions.pdo_pgsql",
    "php83Extensions.redis",
    '(lib.recursiveUpdate php83Packages.composer { meta.priority = php83Packages.composer.meta.priority or 0 -1; })',
    '(php83.withExtensions (pe: pe.enabled ++ [pe.all.ctype pe.all.iconv pe.all.swoole pe.all.redis]))',
    'php83Packages.composer',
    'nodejs_22',
    'npm-9_x',
    "php83Extensions.sockets",
    "php83Extensions.swoole",
]


my executed text:
╔══════════════════════════════ Nixpacks v1.29.1 ══════════════════════════════╗
║ setup      │ python311Packages.supervisor, nano, less, ghostscript,          ║
║            │ php83Extensions.pdo_pgsql, php83Extensions.redis,               ║
║            │ (lib.recursiveUpdate php83Packages.composer { meta.priority =   ║
║            │ php83Packages.composer.meta.priority or 0 -1; }),               ║
║            │ (php83.withExtensions (pe: pe.enabled ++ [pe.all.ctype          ║
║            │ pe.all.iconv pe.all.swoole pe.all.redis])),                     ║
║            │ php83Packages.composer, nodejs_22, npm-9_x,                     ║
║            │ php83Extensions.sockets, php83Extensions.swoole,                ║


Can I help to solve this?
Was this page helpful?