summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-01-08 15:00:16 +0100
committerJan Tojnar <jtojnar@gmail.com>2022-01-08 15:00:16 +0100
commit37e9987fb94f3e52f23d284fe07b4a5b7c844e06 (patch)
tree72a297789d0ec676f17b7671575defc0aec52526
parenteed857b539fd78ffcaf74d52543c17b568a2a4ad (diff)
downloadnixpkgs-37e9987fb94f3e52f23d284fe07b4a5b7c844e06.tar
nixpkgs-37e9987fb94f3e52f23d284fe07b4a5b7c844e06.tar.gz
nixpkgs-37e9987fb94f3e52f23d284fe07b4a5b7c844e06.tar.bz2
nixpkgs-37e9987fb94f3e52f23d284fe07b4a5b7c844e06.tar.lz
nixpkgs-37e9987fb94f3e52f23d284fe07b4a5b7c844e06.tar.xz
nixpkgs-37e9987fb94f3e52f23d284fe07b4a5b7c844e06.tar.zst
nixpkgs-37e9987fb94f3e52f23d284fe07b4a5b7c844e06.zip
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.
-rw-r--r--pkgs/development/libraries/swiften/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix
index 980d034682f..2cdc22ab8f6 100644
--- a/pkgs/development/libraries/swiften/default.nix
+++ b/pkgs/development/libraries/swiften/default.nix
@@ -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 {