21f17d69f6
Build-tested on x86_64 Linux & Mac.
24 lines
651 B
Nix
24 lines
651 B
Nix
{ stdenv, fetchurl, zlib, curl, autoreconfHook, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "funambol-client-cpp-9.0.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/funambol/funambol-client-sdk-9.0.0.zip;
|
|
sha256 = "1667gahz30i5r8kbv7w415z0hbgm6f6pln1137l5skapi1if6r73";
|
|
};
|
|
|
|
postUnpack = ''sourceRoot+="/sdk/cpp/build/autotools"'';
|
|
|
|
propagatedBuildInputs = [ zlib curl ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook unzip ];
|
|
|
|
meta = {
|
|
description = "SyncML client sdk by Funambol project";
|
|
homepage = http://www.funambol.com;
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|