887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
20 lines
574 B
Nix
20 lines
574 B
Nix
{ fetchurl, stdenv, openssl, pkgconfig, db, zlib, cyrus_sasl, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "isync-1.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/isync/${name}.tar.gz";
|
|
sha256 = "1sphd30jplii58y2zmw365bckm6pszmapcy905zhjll1sm1ldjv8";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|