summary refs log tree commit diff
path: root/pkgs/servers/mail
diff options
context:
space:
mode:
authorJanne Heß <dasJ@users.noreply.github.com>2023-09-05 14:27:44 +0200
committerGitHub <noreply@github.com>2023-09-05 14:27:44 +0200
commita98f8441d737c93cfaf93d4590ee6820ecc97fa0 (patch)
tree21557cdf5d0ba8527a8e1ecf66487df1533a9db4 /pkgs/servers/mail
parent410b1f164f6f76c36ff00bc23e12a4a32c943c5e (diff)
parentb675aae932b2bc11ac4cc581f3a931a0e3249ed6 (diff)
downloadnixpkgs-a98f8441d737c93cfaf93d4590ee6820ecc97fa0.tar
nixpkgs-a98f8441d737c93cfaf93d4590ee6820ecc97fa0.tar.gz
nixpkgs-a98f8441d737c93cfaf93d4590ee6820ecc97fa0.tar.bz2
nixpkgs-a98f8441d737c93cfaf93d4590ee6820ecc97fa0.tar.lz
nixpkgs-a98f8441d737c93cfaf93d4590ee6820ecc97fa0.tar.xz
nixpkgs-a98f8441d737c93cfaf93d4590ee6820ecc97fa0.tar.zst
nixpkgs-a98f8441d737c93cfaf93d4590ee6820ecc97fa0.zip
Merge pull request #248104 from helsinki-systems/fix/exiwhat
exim: Fix exiwhat command
Diffstat (limited to 'pkgs/servers/mail')
-rw-r--r--pkgs/servers/mail/exim/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/servers/mail/exim/default.nix b/pkgs/servers/mail/exim/default.nix
index 1a911668a54..d9a8871828c 100644
--- a/pkgs/servers/mail/exim/default.nix
+++ b/pkgs/servers/mail/exim/default.nix
@@ -1,4 +1,5 @@
 { coreutils, db, fetchurl, openssl, pcre2, perl, pkg-config, lib, stdenv
+, procps, killall
 , enableLDAP ? false, openldap
 , enableMySQL ? false, libmysqlclient, zlib
 , enableAuthDovecot ? false, dovecot
@@ -95,6 +96,11 @@ stdenv.mkDerivation rec {
       #/^\s*$/d
     ' < src/EDITME > Local/Makefile
 
+    {
+      echo EXIWHAT_PS_CMD=${procps}/bin/ps
+      echo EXIWHAT_MULTIKILL_CMD=${killall}/bin/killall
+    } >> Local/Makefile
+
     runHook postConfigure
   '';