1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/tools/networking/isync/unstable.nix
Thomas Tuegel 88fec3005b
isyncUnstable: 2015-11-08 -> 20161218
The extra dashes are removed from the version number because Nix treats only the
first component as the version, i.e. `2015-11-08` is version `2015` with two
tags `-11` and `-08`.
2017-02-16 09:48:45 -06:00

30 lines
750 B
Nix

{ fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl
, autoconf, automake }:
stdenv.mkDerivation rec {
name = "isync-git-20161218";
rev = "77acc268123b8233843ca9bc3dcf90669efde08f";
src = fetchgit {
url = "https://git.code.sf.net/p/isync/isync";
inherit rev;
sha256 = "0i21cgmgm8acvd7xwdk9pll3kl6cxj9s1hakqzbwks8j4ncygwkj";
};
buildInputs = [ openssl pkgconfig db cyrus_sasl autoconf automake ];
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 ];
platforms = platforms.unix;
};
}