nixpkgs/pkgs/development/libraries/swiften/default.nix

38 lines
1015 B
Nix
Raw Normal View History

{ stdenv, python, fetchurl, openssl, boost, scons }:
2015-10-08 22:24:04 +01:00
stdenv.mkDerivation rec {
pname = "swiften";
2018-06-19 17:47:00 +01:00
version = "4.0.2";
2015-10-08 22:24:04 +01:00
nativeBuildInputs = [ scons];
2015-10-08 22:24:04 +01:00
buildInputs = [ python ];
propagatedBuildInputs = [ openssl boost ];
src = fetchurl {
url = "https://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz";
2018-06-19 17:47:00 +01:00
sha256 = "0w0aiszjd58ynxpacwcgf052zpmbpcym4dhci64vbfgch6wryz0w";
2015-10-08 22:24:04 +01:00
};
patches = [ ./scons.patch ];
sconsFlags = [
"openssl=${openssl.dev}"
"boost_includedir=${boost.dev}/include"
"boost_libdir=${boost.out}/lib"
"boost_bundled_enable=false"
];
preInstall = ''
installTargets="$out"
installFlags+=" SWIFT_INSTALLDIR=$out"
2015-10-08 22:24:04 +01:00
'';
enableParallelBuilding = true;
2015-10-08 22:24:04 +01:00
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 ];
};
}