From 0456b29ff803e9337002fa62113f96fc271f4c95 Mon Sep 17 00:00:00 2001 From: Volker Diels-Grabsch Date: Tue, 12 Aug 2025 15:09:04 +0200 Subject: [PATCH] php: fix systemdLibs dependency --- pkgs/development/interpreters/php/generic.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/php/generic.nix b/pkgs/development/interpreters/php/generic.nix index 22e8b68e8b058..7c31b26702556 100644 --- a/pkgs/development/interpreters/php/generic.nix +++ b/pkgs/development/interpreters/php/generic.nix @@ -24,7 +24,7 @@ let libargon2, libxml2, pcre2, - systemd, + systemdLibs, system-sendmail, valgrind, xcbuild, @@ -58,7 +58,7 @@ let ipv6Support ? true, zendSignalsSupport ? true, zendMaxExecutionTimersSupport ? false, - systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd, + systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemdLibs, valgrindSupport ? !stdenv.hostPlatform.isDarwin && lib.meta.availableOn stdenv.hostPlatform valgrind, ztsSupport ? apxs2Support, @@ -250,7 +250,7 @@ let # Misc deps ++ lib.optional apxs2Support apacheHttpd ++ lib.optional argon2Support libargon2 - ++ lib.optional systemdSupport systemd + ++ lib.optional systemdSupport systemdLibs ++ lib.optional valgrindSupport valgrind; CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11";