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

23 lines
570 B
Nix
Raw Normal View History

{ 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";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
2018-08-04 16:37:19 +00:00
license = stdenv.lib.licenses.gpl2Plus;
};
}