nixpkgs/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 21:37:34 +00:00
name = "isync-1.1.2";
src = fetchurl {
2013-05-02 17:15:54 +01:00
url = "mirror://sourceforge/isync/${name}.tar.gz";
2015-01-25 21:37:34 +00:00
sha256 = "1960ah3fmp75cakd06lcx50n5q0yvfsadjh3lffhyvjvj7ava9d2";
};
buildInputs = [ openssl pkgconfig db ];
meta = {
homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer";
2014-01-24 15:27:36 +00:00
license = [ "GPLv2+" ];
2014-08-12 12:32:57 +01:00
maintainers = with stdenv.lib.maintainers; [ the-kenny viric ];
2014-08-22 22:16:38 +01:00
platforms = stdenv.lib.platforms.unix;
};
}