3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/isync/default.nix
William A. Kennington III 5c2dbf9827 isync: 1.1.2 -> 1.2.0
2015-04-05 16:17:38 -07:00

22 lines
558 B
Nix

{ fetchurl, stdenv, openssl, pkgconfig, db }:
stdenv.mkDerivation rec {
name = "isync-1.2.0";
src = fetchurl {
url = "mirror://sourceforge/isync/${name}.tar.gz";
sha256 = "0n8fwvv88h7ps7qs122kgh1yx5308765fiwqav5h7m272vg7hf43";
};
buildInputs = [ openssl pkgconfig db ];
meta = {
homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer";
license = [ "GPLv2+" ];
maintainers = with stdenv.lib.maintainers; [ the-kenny viric ];
platforms = stdenv.lib.platforms.unix;
};
}