Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkgs/development/interpreters/php/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let
libargon2,
libxml2,
pcre2,
systemd,
systemdLibs,
system-sendmail,
valgrind,
xcbuild,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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";
Expand Down
Loading