2018-06-03 02:18:29 +01:00
|
|
|
{ stdenv, fetchFromGitHub, python2Packages,
|
2019-01-05 16:38:10 +00:00
|
|
|
asciidoc, cacert, libxml2, libxslt, docbook_xsl }:
|
2010-04-12 22:03:22 +01:00
|
|
|
|
2018-06-03 02:18:29 +01:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2019-06-17 12:41:32 +01:00
|
|
|
version = "7.2.4";
|
2018-06-03 02:18:29 +01:00
|
|
|
pname = "offlineimap";
|
2010-04-12 22:03:22 +01:00
|
|
|
|
2016-01-02 16:58:36 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OfflineIMAP";
|
|
|
|
repo = "offlineimap";
|
|
|
|
rev = "v${version}";
|
2019-06-17 12:41:32 +01:00
|
|
|
sha256 = "0h5q5nk2p2vx86w6rrbs7v70h81dpqqr68x6l3klzl3m0yj9agb1";
|
2010-04-12 22:03:22 +01:00
|
|
|
};
|
|
|
|
|
2017-02-14 18:36:02 +00: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 16:38:10 +00: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 18:36:02 +00:00
|
|
|
'';
|
|
|
|
|
2011-01-03 16:25:11 +00:00
|
|
|
doCheck = false;
|
2010-04-12 22:03:22 +01:00
|
|
|
|
2018-07-17 21:11:16 +01:00
|
|
|
nativeBuildInputs = [ asciidoc libxml2 libxslt docbook_xsl ];
|
2018-06-03 02:18:29 +01:00
|
|
|
propagatedBuildInputs = with python2Packages; [ six kerberos ];
|
2013-04-12 12:13:32 +01:00
|
|
|
|
2017-02-14 18:36:02 +00: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 22:03:22 +01:00
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://offlineimap.org;
|
2016-01-02 17:15:48 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = [];
|
2010-04-12 22:03:22 +01:00
|
|
|
};
|
|
|
|
}
|