offlineimap: enable support for the sqlite status backend

This commit is contained in:
Jonas Hoersch
2013-04-22 10:40:36 +02:00
parent 70ba1888a2
commit 93c39d24b5
2 changed files with 8 additions and 2 deletions
@@ -1,4 +1,4 @@
{ pkgs, fetchurl, buildPythonPackage }: { pkgs, fetchurl, buildPythonPackage, sqlite3 }:
buildPythonPackage rec { buildPythonPackage rec {
version = "6.5.5-rc2"; version = "6.5.5-rc2";
@@ -12,6 +12,10 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
propagatedBuildInputs = [
sqlite3
];
meta = { meta = {
description = "OfflineImap synchronizes emails between two repositories, so that you can read the same mailbox from multiple computers."; description = "OfflineImap synchronizes emails between two repositories, so that you can read the same mailbox from multiple computers.";
homepage = "http://offlineimap.org"; homepage = "http://offlineimap.org";
+3 -1
View File
@@ -1296,7 +1296,9 @@ let
odt2txt = callPackage ../tools/text/odt2txt { }; odt2txt = callPackage ../tools/text/odt2txt { };
offlineimap = callPackage ../tools/networking/offlineimap { }; offlineimap = callPackage ../tools/networking/offlineimap {
inherit (pythonPackages) sqlite3;
};
opendbx = callPackage ../development/libraries/opendbx { }; opendbx = callPackage ../development/libraries/opendbx { };