nixpkgs/pkgs/applications/networking/siproxd/default.nix
Pascal Wittmann 60ad4b1594
sidproxd: add license
see issue #43716
2018-08-04 18:37:19 +02:00

23 lines
570 B
Nix

{ stdenv, fetchurl, libosip }:
stdenv.mkDerivation rec {
name = "siproxd-0.8.2";
src = fetchurl {
url = "mirror://sourceforge/siproxd/${name}.tar.gz";
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;
license = stdenv.lib.licenses.gpl2Plus;
};
}