2015-10-08 22:24:04 +01:00
|
|
|
{ stdenv, python, fetchurl, openssl, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "swiften-${version}";
|
2018-03-23 05:36:20 +00:00
|
|
|
version = "4.0";
|
2015-10-08 22:24:04 +01:00
|
|
|
|
|
|
|
buildInputs = [ python ];
|
|
|
|
propagatedBuildInputs = [ openssl boost ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz";
|
2018-03-23 05:36:20 +00:00
|
|
|
sha256 = "06bk45hxqmny8z7x78ycrfrazq6xdzv5c28i8x0lgc85j03b5dsh";
|
2015-10-08 22:24:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildPhase = ''
|
2015-10-20 06:13:18 +01:00
|
|
|
patchShebangs ./scons
|
2016-04-16 18:44:32 +01:00
|
|
|
./scons openssl=${openssl.dev} \
|
2015-10-08 22:24:04 +01:00
|
|
|
boost_includedir=${boost.dev}/include \
|
2016-04-27 22:41:28 +01:00
|
|
|
boost_libdir=${boost.out}/lib \
|
2015-10-08 22:24:04 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|