From f0281d732558d892f93053a8db261426c8c91fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Dudr?= Date: Fri, 23 Jun 2023 08:46:50 +0200 Subject: [PATCH] php: 72 --- dot_config/php/72/flake.nix | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/dot_config/php/72/flake.nix b/dot_config/php/72/flake.nix index c6d9d51..ca618d6 100644 --- a/dot_config/php/72/flake.nix +++ b/dot_config/php/72/flake.nix @@ -17,7 +17,33 @@ php = (nix-shell.api.makePhp system { php = "php72"; - withExtensions = [ "xdebug" ]; + withExtensions = [ + "bcmath" + "curl" + "dom" + "gd" + "gettext" + "iconv" + "imagick" + "intl" + "mbstring" + "mysqli" + "mysqnd" + "openssl" + "pdo" + "pdo_mysql" + "pdo_sqlite" + "posix" + "soap" + "sodium" + "tidy" + "tokenizer" + "xdebug" + "xmlreader" + "xmlwriter" + "xsl" + "zip" + ]; # withoutExtensions = [ "sodium" ]; extraConfig = '' memory_limit=-1 @@ -44,7 +70,6 @@ buildInputs = [ php php.packages.composer - pkgs.mailhog ]; }; };