From 1b51145e3965cb39c6ec81090f2a20a65d3a36be Mon Sep 17 00:00:00 2001 From: Zuruuh Date: Mon, 21 Jul 2025 10:33:43 +0200 Subject: [PATCH] phpactor: include the `tokenizer` extension --- pkgs/by-name/ph/phpactor/package.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ph/phpactor/package.nix b/pkgs/by-name/ph/phpactor/package.nix index 1ca6d5454213..dc21ef689e72 100644 --- a/pkgs/by-name/ph/phpactor/package.nix +++ b/pkgs/by-name/ph/phpactor/package.nix @@ -21,7 +21,14 @@ php.buildComposerProject2 (finalAttrs: { nativeBuildInputs = [ installShellFiles ]; - php = php.withExtensions ({ all, ... }: with all; [ mbstring ]); + php = php.withExtensions ( + { all, ... }: + with all; + [ + mbstring + tokenizer + ] + ); postInstall = '' installShellCompletion --cmd phpactor \