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

22 lines
555 B
Nix
Raw Normal View History

{ fetchurl, stdenv, openssl, pkgconfig, db }:
stdenv.mkDerivation rec {
name = "isync-1.1.0";
src = fetchurl {
2013-05-02 18:15:54 +02:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
sha256 = "51f5618c239013fb770f98ae269f24ee417214efaaf7e22821b4a27cf9a9213c";
};
buildInputs = [ openssl pkgconfig db ];
meta = {
homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer";
2014-01-24 16:27:36 +01:00
license = [ "GPLv2+" ];
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.linux;
};
}