2021-01-15 06:42:41 +01:00
|
|
|
{ lib, stdenv, fetchurl
|
2021-01-17 03:09:27 +01:00
|
|
|
, notmuch, openssl, pkg-config, sqlite, xapian, zlib
|
2017-02-03 18:57:35 +01:00
|
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-16 20:53:03 +01:00
|
|
|
version = "5";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "muchsync";
|
2017-02-03 19:01:37 +01:00
|
|
|
passthru = {
|
|
|
|
inherit version;
|
|
|
|
};
|
2017-02-03 18:57:35 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "http://www.muchsync.org/src/${pname}-${version}.tar.gz";
|
2018-01-16 20:53:03 +01:00
|
|
|
sha256 = "1k2m44pj5i6vfhp9icdqs42chsp208llanc666p3d9nww8ngq2lb";
|
2017-02-03 18:57:35 +01:00
|
|
|
};
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ notmuch openssl sqlite xapian zlib ];
|
2017-02-03 19:01:37 +01:00
|
|
|
meta = {
|
|
|
|
description = "Synchronize maildirs and notmuch databases";
|
2018-01-17 10:41:34 +01:00
|
|
|
homepage = "http://www.muchsync.org/";
|
2021-01-15 06:42:41 +01:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = with lib.maintainers; [];
|
|
|
|
license = lib.licenses.gpl2Plus;
|
2017-02-03 19:01:37 +01:00
|
|
|
};
|
2017-02-03 18:57:35 +01:00
|
|
|
}
|