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

22 lines
559 B
Nix
Raw Normal View History

{ fetchurl, stdenv, openssl, pkgconfig, db }:
stdenv.mkDerivation rec {
2014-08-12 13:32:57 +02:00
name = "isync-1.1.1";
src = fetchurl {
2013-05-02 18:15:54 +02:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
2014-08-12 13:32:57 +02:00
sha256 = "14blgxhpl78bpr1291zb7n3y9g8jpgmnpdnbl0vp2qplw76zv9f3";
};
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+" ];
2014-08-12 13:32:57 +02:00
maintainers = with stdenv.lib.maintainers; [ the-kenny viric ];
platforms = stdenv.lib.platforms.linux;
};
}