nixpkgs/pkgs/tools/networking/isync/default.nix
Lluís Batlle i Rossell 65968c289a Adding isync
svn path=/nixpkgs/trunk/; revision=25798
2011-02-07 23:07:21 +00:00

22 lines
550 B
Nix

{ fetchurl, stdenv, openssl, pkgconfig, db4 }:
stdenv.mkDerivation rec {
name = "isync-1.0.4";
src = fetchurl {
url = "mirror://sourceforge/isync/isync-1.0.4.tar.gz";
sha256 = "1xmgzypl5a3i0fz1ca55vfbs5mv2l9icwf2gk8rvlbwrkn2wid68";
};
buildInputs = [ openssl pkgconfig db4 ];
meta = {
homepage = http://isync.sourceforge.net/;
description = "Free IMAP and MailDir mailbox synchronizer";
licenses = [ "GPLv2+" ];
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.linux;
};
}