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-11-17 14:00:42 +00:00
name = "isync-1.2.1";
src = fetchurl {
2013-05-02 16:15:54 +00:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
2015-11-17 14:00:42 +00:00
sha256 = "1bij6nm06ghkg98n2pdyacam2fyg5y8f7ajw0d5653m0r4ldw5p7";
};
buildInputs = [ openssl pkgconfig 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;
};
}