dovecot-2.2.x: add missing sqlite build input

Fixes <http://hydra.nixos.org/build/10863508/nixlog/1/raw>.
This commit is contained in:
Peter Simons 2014-05-07 14:45:52 +02:00
parent 1a6a797ec3
commit b30798a0a3

View File

@ -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 {