Merge pull request #22872 from ttuegel/isync

Update isync-git, with several other improvements
This commit is contained in:
Robin Gloster 2017-02-17 02:47:23 +01:00 committed by GitHub
commit a6eb4669b1

View File

@ -1,17 +1,17 @@
{ fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl { fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl, zlib
, autoconf, automake }: , autoconf, automake }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "isync-git-2015-11-08"; name = "isync-git-20161218";
rev = "46e792"; rev = "77acc268123b8233843ca9bc3dcf90669efde08f";
src = fetchgit { src = fetchgit {
url = "git://git.code.sf.net/p/isync/isync"; url = "https://git.code.sf.net/p/isync/isync";
inherit rev; inherit rev;
sha256 = "02bm5m3bwpfns7qdwfybyl4fwa146n55v67pdchkhxaqpa4ddws1"; sha256 = "0i21cgmgm8acvd7xwdk9pll3kl6cxj9s1hakqzbwks8j4ncygwkj";
}; };
buildInputs = [ openssl pkgconfig db cyrus_sasl autoconf automake ]; buildInputs = [ openssl pkgconfig db cyrus_sasl zlib autoconf automake ];
preConfigure = '' preConfigure = ''
touch ChangeLog touch ChangeLog
@ -22,8 +22,7 @@ stdenv.mkDerivation rec {
homepage = http://isync.sourceforge.net/; homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer"; description = "Free IMAP and MailDir mailbox synchronizer";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ the-kenny ttuegel ];
maintainers = with maintainers; [ the-kenny ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }