summary refs log blame commit diff
path: root/pkgs/development/libraries/gloox/default.nix
blob: 3343c78bea1c1e16d7eb4fdcb1d8f1f46bc76da8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                     

                
   
                     
  
                     

                  

                  
                                                                 
                                                                    


                   


                                  


                                                                      

                                       
                                        
                               

    
{ stdenv, fetchurl
, zlibSupport ? true, zlib ? null
, sslSupport ? true, openssl ? null
, idnSupport ? true, libidn ? null
}:

assert zlibSupport -> zlib != null;
assert sslSupport -> openssl != null;
assert idnSupport -> libidn != null;

with stdenv.lib;

let
  version = "1.0.23";
in
stdenv.mkDerivation {
  pname = "gloox";
  inherit version;

  src = fetchurl {
    url = "https://camaya.net/download/gloox-${version}.tar.bz2";
    sha256 = "12jz8glg9zmyk0iyv1ywf5i0hq93dfq8lvn6lyjgy8730w66mjwp";
  };

  buildInputs = [ ]
    ++ optional zlibSupport zlib
    ++ optional sslSupport openssl
    ++ optional idnSupport libidn;

  meta = {
    description = "A portable high-level Jabber/XMPP library for C++";
    homepage = http://camaya.net/gloox;
    license = licenses.gpl3;
    maintainers = with maintainers; [ ];
    platforms = platforms.unix;
  };
}