lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 30 lines 803 B view raw
1{ stdenv, fetchurl, zlib, curl, automake, libtool, autoconf, unzip }: 2 3stdenv.mkDerivation rec { 4 name = "funambol-client-cpp-9.0.0"; 5 6 src = fetchurl { 7 url = mirror://sourceforge/funambol/funambol-client-sdk-9.0.0.zip; 8 sha256 = "1667gahz30i5r8kbv7w415z0hbgm6f6pln1137l5skapi1if6r73"; 9 }; 10 11 postUnpack = ''sourceRoot+="/sdk/cpp/build/autotools"''; 12 13 # Upstream guys forgotten to run autoreconf... 14 preConfigure='' 15 libtoolize -c -f 16 aclocal 17 autoheader 18 automake -a -c -f --add-missing 19 autoconf -f''; 20 21 propagatedBuildInputs = [ zlib curl ]; 22 23 nativeBuildInputs = [ automake libtool autoconf unzip ]; 24 25 meta = { 26 description = "SyncML client sdk by Funambol project"; 27 homepage = http://www.funambol.com; 28 maintainers = [ stdenv.lib.maintainers.urkud ]; 29 }; 30}