depot/third_party/nixpkgs/pkgs/development/libraries/funambol/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
635 B
Nix

{ stdenv, fetchurl, zlib, curl, autoreconfHook, unzip }:
stdenv.mkDerivation {
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 = with stdenv.lib; {
description = "SyncML client sdk by Funambol project";
homepage = "http://www.funambol.com";
license = licenses.agpl3;
platforms = platforms.unix;
};
}