mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Add funambol
svn path=/nixpkgs/trunk/; revision=26336
This commit is contained in:
parent
e37f85adb7
commit
6923a32b33
2 changed files with 32 additions and 0 deletions
30
pkgs/development/libraries/funambol/default.nix
Normal file
30
pkgs/development/libraries/funambol/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchurl, zlib, curl, automake, libtool, autoconf, 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"'';
|
||||
|
||||
# Upstream guys forgotten to run autoreconf...
|
||||
preConfigure=''
|
||||
libtoolize -c -f
|
||||
aclocal
|
||||
autoheader
|
||||
automake -a -c -f --add-missing
|
||||
autoconf -f'';
|
||||
|
||||
propagatedBuildInputs = [ zlib curl ];
|
||||
|
||||
buildNativeInputs = [ automake libtool autoconf unzip ];
|
||||
|
||||
meta = {
|
||||
description = "SyncML client sdk by Funambol project";
|
||||
homepage = http://www.funambol.com;
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
};
|
||||
}
|
|
@ -2966,6 +2966,8 @@ let
|
|||
|
||||
fribidi = callPackage ../development/libraries/fribidi { };
|
||||
|
||||
funambol = callPackage ../development/libraries/funambol { };
|
||||
|
||||
fam = gamin;
|
||||
|
||||
gamin = callPackage ../development/libraries/gamin { };
|
||||
|
|
Loading…
Reference in a new issue