rocmPackages.llvm.libcxx: fix build by disabling test (#375850)
[NixPkgs.git] / pkgs / by-name / si / sipwitch / package.nix
blobb79edcd0848ad79bb8d3b45c9cd6ecd1f9ce5f0b
2   fetchurl,
3   lib,
4   stdenv,
5   pkg-config,
6   ucommon,
7   libosip,
8   libexosip,
9   gnutls,
10   zlib,
13 stdenv.mkDerivation rec {
14   pname = "sipwitch";
15   version = "1.9.15";
17   src = fetchurl {
18     url = "mirror://gnu/sipwitch/sipwitch-${version}.tar.gz";
19     sha256 = "2a7aa86a653f6810b3cd9cce6c37b3f70e937e7d14b09fd5c2a70d70588a9482";
20   };
22   nativeBuildInputs = [ pkg-config ];
23   buildInputs = [
24     ucommon
25     libosip
26     libexosip
27     gnutls
28     zlib
29   ];
31   preConfigure = ''
32     export configureFlags="--sysconfdir=$out/etc"
33   '';
35   doCheck = true;
37   meta = {
38     description = "Secure peer-to-peer VoIP server that uses the SIP protocol";
39     homepage = "https://www.gnu.org/software/sipwitch/";
40     license = lib.licenses.gpl3Plus;
41     maintainers = [ ];
42     platforms = with lib.platforms; linux;
43     broken = true; # Require libexosip2 < 5.0.0 which is vulnerable to CVE-2014-10375.
44   };