2021-01-21 20:00:13 +03:00
|
|
|
{ lib, stdenv, python, fetchurl, openssl, boost, sconsPackages }:
|
2015-10-09 00:24:04 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "swiften";
|
2018-06-19 19:47:00 +03:00
|
|
|
version = "4.0.2";
|
2015-10-09 00:24:04 +03:00
|
|
|
|
2020-07-18 02:30:28 +03:00
|
|
|
nativeBuildInputs = [ sconsPackages.scons_3_1_2 ];
|
2015-10-09 00:24:04 +03:00
|
|
|
buildInputs = [ python ];
|
|
|
|
propagatedBuildInputs = [ openssl boost ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 21:43:35 +03:00
|
|
|
url = "https://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz";
|
2018-06-19 19:47:00 +03:00
|
|
|
sha256 = "0w0aiszjd58ynxpacwcgf052zpmbpcym4dhci64vbfgch6wryz0w";
|
2015-10-09 00:24:04 +03:00
|
|
|
};
|
2018-11-12 05:52:07 +03:00
|
|
|
|
2020-06-16 18:24:18 +03:00
|
|
|
patches = [ ./scons.patch ./build-fix.patch ];
|
2019-07-31 17:47:15 +03:00
|
|
|
|
2018-11-12 05:52:07 +03:00
|
|
|
sconsFlags = [
|
|
|
|
"openssl=${openssl.dev}"
|
|
|
|
"boost_includedir=${boost.dev}/include"
|
|
|
|
"boost_libdir=${boost.out}/lib"
|
|
|
|
"boost_bundled_enable=false"
|
2020-06-16 18:24:18 +03:00
|
|
|
"max_jobs=1"
|
|
|
|
"optimize=1"
|
|
|
|
"debug=0"
|
|
|
|
"swiften_dll=1"
|
2018-11-12 05:52:07 +03:00
|
|
|
];
|
|
|
|
preInstall = ''
|
|
|
|
installTargets="$out"
|
2020-06-16 18:24:18 +03:00
|
|
|
installFlags+=" SWIFTEN_INSTALLDIR=$out"
|
2015-10-09 00:24:04 +03:00
|
|
|
'';
|
|
|
|
|
2019-07-31 17:47:15 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 20:00:13 +03:00
|
|
|
meta = with lib; {
|
2015-10-09 00:24:04 +03:00
|
|
|
description = "An XMPP library for C++, used by the Swift client";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://swift.im/swiften.html";
|
2015-10-09 00:24:04 +03:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.twey ];
|
|
|
|
};
|
|
|
|
}
|