summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-02-13 16:17:11 +0100
committerAndreas Rammhold <andreas@rammhold.de>2018-02-13 16:32:00 +0100
commit7c105205add20b650b8604b9c5fac9d3da1739ed (patch)
treecdc757fdeece279dc46d3b0884507326aebbef2d /pkgs/applications
parent77dba4865ffb241840d41163cd35a0230e53efad (diff)
downloadnixpkgs-7c105205add20b650b8604b9c5fac9d3da1739ed.tar
nixpkgs-7c105205add20b650b8604b9c5fac9d3da1739ed.tar.gz
nixpkgs-7c105205add20b650b8604b9c5fac9d3da1739ed.tar.bz2
nixpkgs-7c105205add20b650b8604b9c5fac9d3da1739ed.tar.lz
nixpkgs-7c105205add20b650b8604b9c5fac9d3da1739ed.tar.xz
nixpkgs-7c105205add20b650b8604b9c5fac9d3da1739ed.tar.zst
nixpkgs-7c105205add20b650b8604b9c5fac9d3da1739ed.zip
ring-daemon: mark as broken since the patched pjsip fails to build
The patches do no longer apply on-top of the pjsip version we provice.
One of the maintainers (@Radvendii @olynch) should have a look what can
be done about this.

The build has been failing since 2017-07-31…
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/instant-messengers/ring-daemon/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/ring-daemon/default.nix b/pkgs/applications/networking/instant-messengers/ring-daemon/default.nix
index 0632e787c70..38bc58d8b10 100644
--- a/pkgs/applications/networking/instant-messengers/ring-daemon/default.nix
+++ b/pkgs/applications/networking/instant-messengers/ring-daemon/default.nix
@@ -77,7 +77,7 @@ let
       "${patchdir}/pjproject/add_dtls_transport.patch"
     ];
     CFLAGS = "-g -DPJ_ICE_MAX_CAND=256 -DPJ_ICE_MAX_CHECKS=150 -DPJ_ICE_COMP_BITS=2 -DPJ_ICE_MAX_STUN=3 -DPJSIP_MAX_PKT_LEN=8000";
-  }); 
+  });
 in
 stdenv.mkDerivation rec {
   name = "ring-daemon-${version}";
@@ -145,5 +145,7 @@ stdenv.mkDerivation rec {
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ taeer olynch ];
     platforms = platforms.linux;
+    # pjsip' fails to compile with the supplied patch set, see: https://hydra.nixos.org/build/68667921/nixlog/4
+    broken = true;
   };
 }