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