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

                                
 
                  

                                                                    
    
 
             
    
 
                                        






                                                                    
                                           


                                                         
    
 
{ stdenv, fetchurl, openssl, libidn, glib, pkgconfig, zlib }:

stdenv.mkDerivation rec {
  version = "1.5.3";
  name = "loudmouth-${version}";

  src = fetchurl {
    url = "http://mcabber.com/files/loudmouth/${name}.tar.bz2";
    sha256 = "0b6kd5gpndl9nzis3n6hcl0ldz74bnbiypqgqa1vgb0vrcar8cjl";
  };

  patches = [
  ];

  configureFlags = "--with-ssl=openssl";

  propagatedBuildInputs = [ openssl libidn glib zlib ];

  buildInputs = [ pkgconfig ];

  meta = {
    description = "A lightweight C library for the Jabber protocol";
    platforms = stdenv.lib.platforms.linux;
    downloadPage = "http://mcabber.com/files/loudmouth/";
    downloadURLRegexp = "loudmouth-[0-9.]+[.]tar[.]bz2$";
    updateWalker = true;
  };
}