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


                                                   
                     


                    
                                                                  


                                                                    

                                    



                                                          
                                        
                                           
                                          

    
{ stdenv, fetchurl, cmake, qt4, pkgconfig, gsasl }:

stdenv.mkDerivation rec {
  pname = "libjreen";
  version = "1.2.0";

  src = fetchurl {
    url = "https://qutim.org/dwnl/73/${pname}-${version}.tar.bz2";
    sha256 = "14nwwk40xx8w6x7yaysgcr0lgzhs7l064f7ikp32s5y9a8mmp582";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ cmake qt4 gsasl ];
  enableParallelBuilding = true;

  meta = {
    description = "C++ Jabber library using Qt framework";
    homepage = https://qutim.org/jreen/;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.unix;
  };
}