2022-05-29 06:48:05 +00:00
|
|
|
{ lib, stdenv, fetchurl, libosip, sqlite }:
|
2011-01-16 11:41:19 +00:00
|
|
|
|
2013-06-28 21:47:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-07-12 10:51:53 +00:00
|
|
|
pname = "siproxd";
|
2022-05-29 06:48:05 +00:00
|
|
|
version = "0.8.3";
|
2016-11-04 14:23:38 +00:00
|
|
|
|
2011-01-16 11:41:19 +00:00
|
|
|
src = fetchurl {
|
2021-07-12 10:51:53 +00:00
|
|
|
url = "mirror://sourceforge/siproxd/siproxd-${version}.tar.gz";
|
2022-05-29 06:48:05 +00:00
|
|
|
sha256 = "0dkpl3myxz3gvj2n2qpqrd19dip9il0vf7qybdvn5wgznrmplvcs";
|
2011-01-16 11:41:19 +00:00
|
|
|
};
|
|
|
|
|
2013-06-28 21:47:54 +00:00
|
|
|
patches = [ ./cheaders.patch ];
|
|
|
|
|
2022-05-29 06:48:05 +00:00
|
|
|
buildInputs = [ libosip sqlite ];
|
2011-01-16 11:41:19 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://siproxd.sourceforge.net/";
|
2011-01-16 11:41:19 +00:00
|
|
|
description = "A masquerading SIP Proxy Server";
|
2021-01-15 05:42:41 +00:00
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
license = lib.licenses.gpl2Plus;
|
2011-01-16 11:41:19 +00:00
|
|
|
};
|
|
|
|
}
|