2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, libosip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-05 21:33:18 +00:00
|
|
|
pname = "siproxd";
|
|
|
|
version = "0.8.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-05 21:33:18 +00:00
|
|
|
url = "mirror://sourceforge/siproxd/siproxd-${version}.tar.gz";
|
2020-04-24 23:36:52 +00:00
|
|
|
sha256 = "1l6cyxxhra825jiiw9npa7jrbfgbyfpk4966cqkrw66cn28y8v2j";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./cheaders.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ libosip ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://siproxd.sourceforge.net/";
|
|
|
|
description = "A masquerading SIP Proxy Server";
|
2021-01-15 22:18:51 +00:00
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
license = lib.licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|