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

22 lines
581 B
Nix
Raw Normal View History

{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
stdenv.mkDerivation rec {
2015-04-05 16:17:25 -07:00
name = "isync-1.2.0";
src = fetchurl {
2013-05-02 09:15:54 -07:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
2015-04-05 16:17:25 -07:00
sha256 = "0n8fwvv88h7ps7qs122kgh1yx5308765fiwqav5h7m272vg7hf43";
};
buildInputs = [ openssl pkgconfig db cyrus_sasl ];
meta = {
homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer";
2014-01-24 07:27:36 -08:00
license = [ "GPLv2+" ];
2014-08-12 04:32:57 -07:00
maintainers = with stdenv.lib.maintainers; [ the-kenny viric ];
2014-08-22 14:16:38 -07:00
platforms = stdenv.lib.platforms.unix;
};
}