1 { lib, stdenv, fetchurl
2 , zlibSupport ? true, zlib
3 , sslSupport ? true, openssl
4 , idnSupport ? true, libidn
9 stdenv.mkDerivation rec{
14 url = "https://camaya.net/download/gloox-${version}.tar.bz2";
15 sha256 = "1jgrd07qr9jvbb5hcmhrqz4w4lvwc51m30jls1fgxf1f5az6455f";
19 ++ optional zlibSupport zlib
20 ++ optional sslSupport openssl
21 ++ optional idnSupport libidn;
24 description = "A portable high-level Jabber/XMPP library for C++";
25 homepage = "http://camaya.net/gloox";
26 license = licenses.gpl3;
27 maintainers = with maintainers; [ ];
28 platforms = platforms.unix;