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:
parent
eed857b539
commit
37e9987fb9
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue