From 9b9ca264d1db40734c565d352f0be2f7c3d3c2c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 27 Oct 2011 22:07:39 +0000 Subject: [PATCH] dovecot 2 feels hapier with zlib and bzip2 svn path=/nixpkgs/trunk/; revision=30077 --- pkgs/servers/mail/dovecot/2.0.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/dovecot/2.0.nix b/pkgs/servers/mail/dovecot/2.0.nix index 15215fa06ce..80cb237f6df 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;