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

22 lines
526 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libosip }:
stdenv.mkDerivation rec {
2016-11-04 15:23:38 +01:00
name = "siproxd-0.8.2";
src = fetchurl {
url = "mirror://sourceforge/siproxd/${name}.tar.gz";
2016-11-04 15:23:38 +01: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;
};
}