mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
0a15643401
(cherry picked from commit f26f2c8b6f755708a8bfa7aa4f56c52a2c751df6)
23 lines
624 B
Nix
23 lines
624 B
Nix
{ fetchurl, stdenv, openssl, pkgconfig, db, zlib, cyrus_sasl, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "isync-1.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/isync/${name}.tar.gz";
|
|
sha256 = "173wd7x8y5sp94slzwlnb7zhgs32r57zl9xspl2rf4g3fqwmhpwd";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|