iksemel: Add new package with version 1.4.

This library is used by Zabbix in order to send XMPP alerts/notifications.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-06-21 11:33:08 +02:00
parent b0601f6d6f
commit f974573a5e
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
stdenv.mkDerivation rec {
name = "iksemel-${version}";
version = "1.4";
src = fetchurl {
url = "https://iksemel.googlecode.com/files/${name}.tar.gz";
sha1 = "722910b99ce794fd3f6f0e5f33fa804732cf46db";
};
preConfigure = ''
sed -i -e '/if.*gnutls_check_version/,/return 1;/c return 0;' configure
export LIBGNUTLS_CONFIG="${pkgconfig}/bin/pkg-config gnutls"
'';
buildInputs = [ pkgconfig gnutls zlib ];
meta = {
homepage = "https://code.google.com/p/iksemel/";
license = stdenv.lib.licenses.lgpl21Plus;
description = "Fast and portable XML parser and Jabber protocol library";
};
}

View File

@ -4220,6 +4220,8 @@ let
id3lib = callPackage ../development/libraries/id3lib { };
iksemel = callPackage ../development/libraries/iksemel { };
ilbc = callPackage ../development/libraries/ilbc { };
ilmbase = callPackage ../development/libraries/ilmbase { };