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

32 lines
958 B
Nix
Raw Normal View History

2015-10-08 21:24:04 +00:00
{ stdenv, python, fetchurl, openssl, boost }:
stdenv.mkDerivation rec {
name = "swiften-${version}";
2018-06-19 16:47:00 +00:00
version = "4.0.2";
2015-10-08 21:24:04 +00:00
buildInputs = [ python ];
propagatedBuildInputs = [ openssl boost ];
src = fetchurl {
url = "https://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz";
2018-06-19 16:47:00 +00:00
sha256 = "0w0aiszjd58ynxpacwcgf052zpmbpcym4dhci64vbfgch6wryz0w";
2015-10-08 21:24:04 +00:00
};
buildPhase = ''
2015-10-20 05:13:18 +00:00
patchShebangs ./scons
./scons openssl=${openssl.dev} \
2015-10-08 21:24:04 +00:00
boost_includedir=${boost.dev}/include \
boost_libdir=${boost.out}/lib \
2015-10-08 21:24:04 +00: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 ];
};
}