summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-05-07 14:45:52 +0200
committerPeter Simons <simons@cryp.to>2014-05-07 14:45:52 +0200
commitb30798a0a3578d968323f93beeb9b21bba44f17b (patch)
treed5c9ba90734c0e2f0f28e57e8055331c36d0a760 /pkgs/servers
parent1a6a797ec34e7dd0d80af9a16b1d03ee0ad96d61 (diff)
downloadnixlib-b30798a0a3578d968323f93beeb9b21bba44f17b.tar
nixlib-b30798a0a3578d968323f93beeb9b21bba44f17b.tar.gz
nixlib-b30798a0a3578d968323f93beeb9b21bba44f17b.tar.bz2
nixlib-b30798a0a3578d968323f93beeb9b21bba44f17b.tar.lz
nixlib-b30798a0a3578d968323f93beeb9b21bba44f17b.tar.xz
nixlib-b30798a0a3578d968323f93beeb9b21bba44f17b.tar.zst
nixlib-b30798a0a3578d968323f93beeb9b21bba44f17b.zip
dovecot-2.2.x: add missing sqlite build input
Fixes <http://hydra.nixos.org/build/10863508/nixlog/1/raw>.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/mail/dovecot/2.2.x.nix4
1 files 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 {