about summary refs log tree commit diff
path: root/nixos/tests/dovecot.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-04-07 07:25:48 +0100
committerJörg Thalheim <joerg@thalheim.io>2020-04-07 07:26:47 +0100
commitcf3328e7e3c9ff3e878f5ac8f7d19ba98732942a (patch)
tree7d430c867c37d40d478b95157b6eb071566ffb62 /nixos/tests/dovecot.nix
parent5040cd56b00029335ed5652841da664745b1e195 (diff)
treewide: use runtimeShell in nixos/
This is needed for cross-compilation.
Diffstat (limited to 'nixos/tests/dovecot.nix')
-rw-r--r--nixos/tests/dovecot.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/dovecot.nix b/nixos/tests/dovecot.nix
index c19850f418bc1..bcbe234fd8052 100644
--- a/nixos/tests/dovecot.nix
+++ b/nixos/tests/dovecot.nix
@@ -8,7 +8,7 @@ import ./make-test-python.nix {
     services.dovecot2.protocols = [ "imap" "pop3" ];
     environment.systemPackages = let
       sendTestMail = pkgs.writeScriptBin "send-testmail" ''
-        #!${pkgs.stdenv.shell}
+        #!${pkgs.runtimeShell}
         exec sendmail -vt <<MAIL
         From: root@localhost
         To: alice@localhost
@@ -19,7 +19,7 @@ import ./make-test-python.nix {
       '';
 
       sendTestMailViaDeliveryAgent = pkgs.writeScriptBin "send-lda" ''
-        #!${pkgs.stdenv.shell}
+        #!${pkgs.runtimeShell}
 
         exec ${pkgs.dovecot}/libexec/dovecot/deliver -d bob <<MAIL
         From: root@localhost