1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/tools/networking/isync/default.nix

23 lines
619 B
Nix
Raw Normal View History

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