1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
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 00:17:25 +01:00
name = "isync-1.2.0";
src = fetchurl {
2013-05-02 17:15:54 +01:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
2015-04-06 00:17:25 +01: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;
};
}