nixpkgs/pkgs/tools/networking/isync/default.nix
Tobias Geerinckx-Rice 158e1cfdd0 Don't use "with licenses;" for single licences
And don't use square brackets on such lines.
2015-05-28 19:20:29 +02:00

22 lines
581 B
Nix

{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
stdenv.mkDerivation rec {
name = "isync-1.2.0";
src = fetchurl {
url = "mirror://sourceforge/isync/${name}.tar.gz";
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 = licenses.gpl2Plus;
maintainers = with maintainers; [ the-kenny viric ];
platforms = platforms.unix;
};
}