3
0
Fork 0
forked from mirrors/nixpkgs

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 {
pname = "swiften";
version = "4.0.2";
nativeBuildInputs = [ sconsPackages.scons_3_1_2 ];
buildInputs = [ python ];
buildInputs = [
python
expat
];
propagatedBuildInputs = [ openssl boost ];
src = fetchurl {