biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / siproxd / default.nix
blobf9dea3e2bf805efbce63db916d9e4e7df0f58acb
1 { lib, stdenv, fetchurl, libosip, sqlite }:
3 stdenv.mkDerivation rec {
4   pname = "siproxd";
5   version = "0.8.3";
7   src = fetchurl {
8     url = "mirror://sourceforge/siproxd/siproxd-${version}.tar.gz";
9     sha256 = "0dkpl3myxz3gvj2n2qpqrd19dip9il0vf7qybdvn5wgznrmplvcs";
10   };
12   patches = [ ./cheaders.patch ];
14   buildInputs = [ libosip sqlite ];
16   meta = {
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;
23   };