python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / gloox / default.nix
blobf50704bcb65c25b1e18a3fddd92a00dfcab6fc1e
1 { lib, stdenv, fetchurl
2 , zlibSupport ? true, zlib
3 , sslSupport ? true, openssl
4 , idnSupport ? true, libidn
5 }:
7 with lib;
9 stdenv.mkDerivation rec{
10   pname = "gloox";
11   version = "1.0.24";
13   src = fetchurl {
14     url = "https://camaya.net/download/gloox-${version}.tar.bz2";
15     sha256 = "1jgrd07qr9jvbb5hcmhrqz4w4lvwc51m30jls1fgxf1f5az6455f";
16   };
18   buildInputs = [ ]
19     ++ optional zlibSupport zlib
20     ++ optional sslSupport openssl
21     ++ optional idnSupport libidn;
23   meta = {
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;
29   };