summary refs log tree commit diff
path: root/pkgs/applications/networking/siproxd/default.nix
blob: 2a91eb35d80e1a4a34da4355e20ddc1d81a9d7ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, fetchurl, libosip }:

stdenv.mkDerivation rec {
  name = "siproxd-0.8.2";

  src = fetchurl {
    url = "mirror://sourceforge/siproxd/${name}.tar.gz";
    sha256 = "1l6cyxxhra825jiiw9npa7jrbfgbyfpk4966cqkrw66cn28y8v2j";
  };

  patches = [ ./cheaders.patch ];

  buildInputs = [ libosip ];

  meta = {
    homepage = "http://siproxd.sourceforge.net/";
    description = "A masquerading SIP Proxy Server";
    maintainers = with lib.maintainers; [viric];
    platforms = with lib.platforms; linux;
    license = lib.licenses.gpl2Plus;
  };
}