about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorSoner Sayakci <s.sayakci@shopware.com>2023-12-11 11:52:25 +0100
committerSoner Sayakci <s.sayakci@shopware.com>2023-12-12 10:30:53 +0100
commite5a305357c398401f64981db221284a91de9b1ac (patch)
tree9c77dbf5a2513fabca6308d4547aef761b330358 /pkgs/development/tools/misc
parent69d61d5ab0500d9ee52881ebacfb8c8f268ca0d8 (diff)
php82Extensions.blackfire: block php zts builds
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/blackfire/php-probe.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/blackfire/php-probe.nix b/pkgs/development/tools/misc/blackfire/php-probe.nix
index 39f5dd5185f43..960928c24552c 100644
--- a/pkgs/development/tools/misc/blackfire/php-probe.nix
+++ b/pkgs/development/tools/misc/blackfire/php-probe.nix
@@ -9,6 +9,8 @@
 , common-updater-scripts
 }:
 
+assert lib.assertMsg (!php.ztsSupport) "blackfire only supports non zts versions of PHP";
+
 let
   phpMajor = lib.versions.majorMinor php.version;