2022-06-16 17:23:12 +00:00
|
|
|
{ lib, stdenv, fetchurl, libosip, sqlite }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-05 21:33:18 +00:00
|
|
|
pname = "siproxd";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "0.8.3";
|
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";
|
2022-06-16 17:23:12 +00:00
|
|
|
sha256 = "0dkpl3myxz3gvj2n2qpqrd19dip9il0vf7qybdvn5wgznrmplvcs";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./cheaders.patch ];
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
buildInputs = [ libosip sqlite ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|