2012-10-09 08:28:38 -07:00
|
|
|
{ stdenv, fetchurl, openssl, libidn, glib, pkgconfig, zlib }:
|
2008-01-28 11:49:25 -08:00
|
|
|
|
2012-10-09 08:28:38 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2009-04-09 05:16:58 -07:00
|
|
|
name = "loudmouth-1.4.3";
|
2012-10-09 08:28:38 -07:00
|
|
|
|
2009-04-09 05:16:58 -07:00
|
|
|
src = fetchurl {
|
2012-10-09 08:28:38 -07:00
|
|
|
url = "mirror://gnome/sources/loudmouth/1.4/${name}.tar.bz2";
|
2009-04-09 05:16:58 -07:00
|
|
|
md5 = "55339ca42494690c3942ee1465a96937";
|
|
|
|
};
|
2012-10-09 08:28:38 -07:00
|
|
|
|
|
|
|
patches = [ ./glib-2.32.patch ];
|
|
|
|
|
2009-09-10 14:08:46 -07:00
|
|
|
configureFlags = "--with-ssl=openssl";
|
2012-10-09 08:28:38 -07:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ openssl libidn glib zlib ];
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A lightweight C library for the Jabber protocol";
|
|
|
|
};
|
2008-01-28 11:49:25 -08:00
|
|
|
}
|