nixpkgs/pkgs/tools/networking/isync/default.nix

23 lines
624 B
Nix
Raw Normal View History

{ fetchurl, stdenv, openssl, pkgconfig, db, zlib, cyrus_sasl, perl }:
stdenv.mkDerivation rec {
2017-10-18 02:33:33 +02:00
name = "isync-1.3.0";
src = fetchurl {
2013-05-02 18:15:54 +02:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
2017-10-18 02:33:33 +02:00
sha256 = "173wd7x8y5sp94slzwlnb7zhgs32r57zl9xspl2rf4g3fqwmhpwd";
};
2017-10-18 02:33:33 +02:00
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ openssl db cyrus_sasl zlib ];
meta = with stdenv.lib; {
homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ the-kenny ];
platforms = platforms.unix;
};
}