nixpkgs/pkgs/applications/networking/siproxd/default.nix

23 lines
556 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchurl, libosip }:
stdenv.mkDerivation rec {
2016-11-04 14:23:38 +00:00
name = "siproxd-0.8.2";
src = fetchurl {
url = "mirror://sourceforge/siproxd/${name}.tar.gz";
2016-11-04 14:23:38 +00:00
sha256 = "1l6cyxxhra825jiiw9npa7jrbfgbyfpk4966cqkrw66cn28y8v2j";
};
patches = [ ./cheaders.patch ];
buildInputs = [ libosip ];
meta = {
homepage = "http://siproxd.sourceforge.net/";
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;
};
}