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

21 lines
574 B
Nix
Raw Normal View History

{ fetchurl, stdenv, openssl, pkgconfig, db, zlib, cyrus_sasl, perl }:
stdenv.mkDerivation rec {
name = "isync-1.3.1";
src = fetchurl {
2013-05-02 20:15:54 +04:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
sha256 = "1sphd30jplii58y2zmw365bckm6pszmapcy905zhjll1sm1ldjv8";
};
2017-10-18 03:33:33 +03: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;
platforms = platforms.unix;
};
}