mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 06:44:06 +00:00
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 {
|
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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user