pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / sip / sipwitch / default.nix
blob0c11ffe8c1eea8d6fc953b2a88cb3d000c68145f
1 { fetchurl, lib, stdenv, pkg-config, ucommon, libosip, libexosip, gnutls, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "sipwitch";
5   version = "1.9.15";
7   src = fetchurl {
8     url = "mirror://gnu/sipwitch/sipwitch-${version}.tar.gz";
9     sha256 = "2a7aa86a653f6810b3cd9cce6c37b3f70e937e7d14b09fd5c2a70d70588a9482";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ ucommon libosip libexosip gnutls zlib ];
15   preConfigure = ''
16     export configureFlags="--sysconfdir=$out/etc"
17   '';
19   doCheck = true;
21   meta = {
22     description = "Secure peer-to-peer VoIP server that uses the SIP protocol";
23     homepage = "https://www.gnu.org/software/sipwitch/";
24     license = lib.licenses.gpl3Plus;
25     maintainers = [ ];
26     platforms = with lib.platforms; linux;
27     broken = true; # Require libexosip2 < 5.0.0 which is vulnerable to CVE-2014-10375.
28   };