1{ stdenv, fetchurl, gtk, glib, ORBit2, libbonobo, libtool, pkgconfig
2, libgnomeui, GConf, automake, autoconf }:
3
4stdenv.mkDerivation {
5 name = "multisync-0.82-1";
6
7 src = fetchurl {
8 url = mirror://sourceforge/multisync/multisync-0.82-1.tar.bz2;
9 sha256 = "1azb6zsn3n1rnla2qc3c440gc4vgmbj593k6xj5g1v0xha2vm2y3";
10 };
11
12 buildInputs =
13 [ gtk glib ORBit2 libbonobo libtool pkgconfig libgnomeui GConf
14 automake autoconf
15 ];
16
17 preConfigure = "./autogen.sh"; # install.sh is not contained in the tar
18
19 meta = {
20 description = "modular program to synchronize calendars, addressbooks and other PIM data between pcs, mobile devices etc";
21 };
22}
23