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

22 lines
558 B
Nix
Raw Normal View History

{ fetchurl, stdenv, openssl, pkgconfig, db }:
stdenv.mkDerivation rec {
2015-01-25 22:37:34 +01:00
name = "isync-1.1.2";
src = fetchurl {
2013-05-02 18:15:54 +02:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
2015-01-25 22:37:34 +01:00
sha256 = "1960ah3fmp75cakd06lcx50n5q0yvfsadjh3lffhyvjvj7ava9d2";
};
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 ];
2014-08-22 23:16:38 +02:00
platforms = stdenv.lib.platforms.unix;
};
}