nixpkgs/pkgs/applications/networking/mailreaders/notmuch/muchsync.nix
2021-01-15 14:24:03 +07:00

24 lines
681 B
Nix

{ lib, stdenv, fetchurl
, notmuch, openssl, pkgconfig, sqlite, xapian, zlib
}:
stdenv.mkDerivation rec {
version = "5";
pname = "muchsync";
passthru = {
inherit version;
};
src = fetchurl {
url = "http://www.muchsync.org/src/${pname}-${version}.tar.gz";
sha256 = "1k2m44pj5i6vfhp9icdqs42chsp208llanc666p3d9nww8ngq2lb";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ notmuch openssl sqlite xapian zlib ];
meta = {
description = "Synchronize maildirs and notmuch databases";
homepage = "http://www.muchsync.org/";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [];
license = lib.licenses.gpl2Plus;
};
}