isync: Add unstable variant.
This commit is contained in:
parent
45ade79bf9
commit
24e0868763
|
@ -0,0 +1,29 @@
|
||||||
|
{ fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl
|
||||||
|
, autoconf, automake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "isync-git-2015-11-08";
|
||||||
|
rev = "46e792";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://git.code.sf.net/p/isync/isync";
|
||||||
|
inherit rev;
|
||||||
|
sha256 = "1flm9lkgf1pa6aa678xr0yj5fxwh8c9jpjzd4002f4jjmcf4w57s";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1977,6 +1977,7 @@ let
|
||||||
isl_0_15 = callPackage ../development/libraries/isl/0.15.0.nix { };
|
isl_0_15 = callPackage ../development/libraries/isl/0.15.0.nix { };
|
||||||
|
|
||||||
isync = callPackage ../tools/networking/isync { };
|
isync = callPackage ../tools/networking/isync { };
|
||||||
|
isyncUnstable = callPackage ../tools/networking/isync/unstable.nix { };
|
||||||
|
|
||||||
jaaa = callPackage ../applications/audio/jaaa { };
|
jaaa = callPackage ../applications/audio/jaaa { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue