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

29 lines
768 B
Nix
Raw Normal View History

2017-02-16 16:50:18 +01:00
{ fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl, zlib
2016-01-05 12:20:16 +01:00
, autoconf, automake }:
stdenv.mkDerivation rec {
name = "isync-git-20161218";
rev = "77acc268123b8233843ca9bc3dcf90669efde08f";
2016-01-05 12:20:16 +01:00
src = fetchgit {
2017-02-16 16:48:26 +01:00
url = "https://git.code.sf.net/p/isync/isync";
2016-01-05 12:20:16 +01:00
inherit rev;
sha256 = "0i21cgmgm8acvd7xwdk9pll3kl6cxj9s1hakqzbwks8j4ncygwkj";
2016-01-05 12:20:16 +01:00
};
2017-02-16 16:50:18 +01:00
buildInputs = [ openssl pkgconfig db cyrus_sasl zlib autoconf automake ];
2016-01-05 12:20:16 +01:00
preConfigure = ''
touch ChangeLog
./autogen.sh
'';
meta = with stdenv.lib; {
homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ the-kenny ttuegel ];
2016-01-05 12:20:16 +01:00
platforms = platforms.unix;
};
}