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


                                             
                    





                                                                                           
                                                                    


                 
                         
                                    
                                                   
                                           












                                                                      
{ stdenv, python, fetchurl, openssl, boost }:
stdenv.mkDerivation rec {
  name    = "swiften-${version}";
  version = "4.0.2";

  buildInputs           = [ python ];
  propagatedBuildInputs = [ openssl boost ];

  src = fetchurl {
    url    = "http://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz";
    sha256 = "0w0aiszjd58ynxpacwcgf052zpmbpcym4dhci64vbfgch6wryz0w";
  };
  
  buildPhase = ''
    patchShebangs ./scons
    ./scons openssl=${openssl.dev} \
            boost_includedir=${boost.dev}/include \
            boost_libdir=${boost.out}/lib \
            boost_bundled_enable=false \
            SWIFTEN_INSTALLDIR=$out $out
  '';
  installPhase = "true";

  meta = with stdenv.lib; {
    description = "An XMPP library for C++, used by the Swift client";
    homepage    = http://swift.im/swiften.html;
    license     = licenses.gpl2Plus;
    platforms   = platforms.linux;
    maintainers = [ maintainers.twey ];
  };
}