summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/servers/mail/dovecot/2.0.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/mail/dovecot/2.0.nix b/pkgs/servers/mail/dovecot/2.0.nix
index 15215fa06cef..80cb237f6df9 100644
--- a/pkgs/servers/mail/dovecot/2.0.nix
+++ b/pkgs/servers/mail/dovecot/2.0.nix
@@ -1,9 +1,9 @@
-{stdenv, fetchurl, openssl, pam}:
+{stdenv, fetchurl, openssl, pam, bzip2, zlib}:
 
 stdenv.mkDerivation {
   name = "dovecot-2.0.15";
 
-  buildInputs = [openssl pam];
+  buildInputs = [openssl pam bzip2 zlib];
 
   src = fetchurl {
     url = http://dovecot.org/releases/2.0/dovecot-2.0.15.tar.gz;