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…
This commit is contained in:
Andreas Rammhold 2018-02-13 16:17:11 +01:00
parent 77dba4865f
commit 7c105205ad
No known key found for this signature in database
GPG Key ID: E432E410B5E48C86

@ -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;
};
}