2018-06-03 03:18:29 +02:00
|
|
|
{ stdenv, fetchFromGitHub, python2Packages,
|
2019-01-05 17:38:10 +01:00
|
|
|
asciidoc, cacert, libxml2, libxslt, docbook_xsl }:
|
2010-04-12 23:03:22 +02:00
|
|
|
|
2018-06-03 03:18:29 +02:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2019-03-11 08:23:26 +01:00
|
|
|
version = "7.2.3";
|
2018-06-03 03:18:29 +02:00
|
|
|
pname = "offlineimap";
|
2010-04-12 23:03:22 +02:00
|
|
|
|
2016-01-02 17:58:36 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OfflineIMAP";
|
|
|
|
repo = "offlineimap";
|
|
|
|
rev = "v${version}";
|
2019-03-11 08:23:26 +01:00
|
|
|
sha256 = "18sdnhjldn8zs03bgqy1qa3ikmlfvyxcvwp3nbnv1a74biccqbpa";
|
2010-04-12 23:03:22 +02:00
|
|
|
};
|
|
|
|
|
2017-02-14 19:36:02 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Skip xmllint to stop failures due to no network access
|
|
|
|
sed -i docs/Makefile -e "s|a2x -v -d |a2x -L -v -d |"
|
2019-01-05 17:38:10 +01:00
|
|
|
|
|
|
|
# Provide CA certificates (Used when "sslcacertfile = OS-DEFAULT" is configured")
|
|
|
|
sed -i offlineimap/utils/distro.py -e '/def get_os_sslcertfile():/a\ \ \ \ return "${cacert}/etc/ssl/certs/ca-bundle.crt"'
|
2017-02-14 19:36:02 +01:00
|
|
|
'';
|
|
|
|
|
2011-01-03 17:25:11 +01:00
|
|
|
doCheck = false;
|
2010-04-12 23:03:22 +02:00
|
|
|
|
2018-07-17 22:11:16 +02:00
|
|
|
nativeBuildInputs = [ asciidoc libxml2 libxslt docbook_xsl ];
|
2018-06-03 03:18:29 +02:00
|
|
|
propagatedBuildInputs = with python2Packages; [ six kerberos ];
|
2013-04-12 13:13:32 +02:00
|
|
|
|
2017-02-14 19:36:02 +01:00
|
|
|
postInstall = ''
|
|
|
|
make -C docs man
|
|
|
|
install -D -m 644 docs/offlineimap.1 ''${!outputMan}/share/man/man1/offlineimap.1
|
|
|
|
install -D -m 644 docs/offlineimapui.7 ''${!outputMan}/share/man/man7/offlineimapui.7
|
|
|
|
'';
|
|
|
|
|
2010-04-12 23:03:22 +02:00
|
|
|
meta = {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://offlineimap.org;
|
2016-01-02 18:15:48 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
2010-04-12 23:03:22 +02:00
|
|
|
};
|
|
|
|
}
|