mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
24 lines
583 B
Nix
24 lines
583 B
Nix
{ lib, stdenv, fetchurl, libosip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "siproxd";
|
|
version = "0.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/siproxd/siproxd-${version}.tar.gz";
|
|
sha256 = "1l6cyxxhra825jiiw9npa7jrbfgbyfpk4966cqkrw66cn28y8v2j";
|
|
};
|
|
|
|
patches = [ ./cheaders.patch ];
|
|
|
|
buildInputs = [ libosip ];
|
|
|
|
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;
|
|
};
|
|
}
|