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

22 lines
591 B
Nix
Raw Normal View History

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