b8e6a6ef5a
svn path=/nixpkgs/trunk/; revision=25584
20 lines
493 B
Nix
20 lines
493 B
Nix
{ stdenv, fetchurl, libosip }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "siproxd-0.8.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/siproxd/siproxd-0.8.0.tar.gz;
|
|
sha256 = "0hl51z33cf68ki707jkrrjjc3a5vpaf49gbrsz3g4rfxypdhc0qs";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|