1 { lib, stdenv, fetchurl, libosip, sqlite }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/siproxd/siproxd-${version}.tar.gz";
9 sha256 = "0dkpl3myxz3gvj2n2qpqrd19dip9il0vf7qybdvn5wgznrmplvcs";
12 patches = [ ./cheaders.patch ];
14 buildInputs = [ libosip sqlite ];
17 homepage = "http://siproxd.sourceforge.net/";
18 description = "A masquerading SIP Proxy Server";
19 mainProgram = "siproxd";
20 maintainers = with lib.maintainers; [viric];
21 platforms = with lib.platforms; linux;
22 license = lib.licenses.gpl2Plus;