62a65320ae
Among other things fixes build failure against upstream gcc-10: ld: accessctl.o:/build/siproxd-0.8.2/src/accessctl.c:37: multiple definition of `configuration'; siproxd.o:/build/siproxd-0.8.2/src/siproxd.c:46: first defined here Changelog: https://github.com/hb9xar/siproxd/blob/master/ChangeLog
24 lines
598 B
Nix
24 lines
598 B
Nix
{ lib, stdenv, fetchurl, libosip, sqlite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "siproxd";
|
|
version = "0.8.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/siproxd/siproxd-${version}.tar.gz";
|
|
sha256 = "0dkpl3myxz3gvj2n2qpqrd19dip9il0vf7qybdvn5wgznrmplvcs";
|
|
};
|
|
|
|
patches = [ ./cheaders.patch ];
|
|
|
|
buildInputs = [ libosip sqlite ];
|
|
|
|
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;
|
|
};
|
|
}
|