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

34 lines
962 B
Nix
Raw Normal View History

{ stdenv, python, fetchurl, openssl, boost, scons }:
2015-10-08 23:24:04 +02:00
stdenv.mkDerivation rec {
name = "swiften-${version}";
2018-06-19 18:47:00 +02:00
version = "4.0.2";
2015-10-08 23:24:04 +02:00
nativeBuildInputs = [ scons];
2015-10-08 23:24:04 +02:00
buildInputs = [ python ];
propagatedBuildInputs = [ openssl boost ];
src = fetchurl {
url = "https://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz";
2018-06-19 18:47:00 +02:00
sha256 = "0w0aiszjd58ynxpacwcgf052zpmbpcym4dhci64vbfgch6wryz0w";
2015-10-08 23:24:04 +02:00
};
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 23:24:04 +02: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 ];
};
}