From b30798a0a3578d968323f93beeb9b21bba44f17b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 7 May 2014 14:45:52 +0200 Subject: [PATCH] dovecot-2.2.x: add missing sqlite build input Fixes . --- pkgs/servers/mail/dovecot/2.2.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/dovecot/2.2.x.nix b/pkgs/servers/mail/dovecot/2.2.x.nix index 366d0fb1f323..64ef3c44895d 100644 --- a/pkgs/servers/mail/dovecot/2.2.x.nix +++ b/pkgs/servers/mail/dovecot/2.2.x.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, perl, systemd, openssl, pam, bzip2, zlib, openldap -, inotifyTools, clucene_core_2 }: +, inotifyTools, clucene_core_2, sqlite }: stdenv.mkDerivation rec { name = "dovecot-2.2.12"; - buildInputs = [perl openssl bzip2 zlib openldap clucene_core_2] + buildInputs = [perl openssl bzip2 zlib openldap clucene_core_2 sqlite] ++ stdenv.lib.optionals (stdenv.isLinux) [ systemd pam inotifyTools ]; src = fetchurl {