swiften: use system expat

The bundled version does not build with latest boost. Also bundling deps is eww.

But swiften itself still broken by boost update.
This commit is contained in:
Jan Tojnar 2022-01-08 15:00:16 +01:00
parent eed857b539
commit 37e9987fb9

View File

@ -1,10 +1,13 @@
{ lib, stdenv, python, fetchurl, openssl, boost, sconsPackages }: { lib, stdenv, python, expat, fetchurl, openssl, boost, sconsPackages }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "swiften"; pname = "swiften";
version = "4.0.2"; version = "4.0.2";
nativeBuildInputs = [ sconsPackages.scons_3_1_2 ]; nativeBuildInputs = [ sconsPackages.scons_3_1_2 ];
buildInputs = [ python ]; buildInputs = [
python
expat
];
propagatedBuildInputs = [ openssl boost ]; propagatedBuildInputs = [ openssl boost ];
src = fetchurl { src = fetchurl {