mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Adding siproxd
svn path=/nixpkgs/trunk/; revision=25584
This commit is contained in:
parent
6518402329
commit
b8e6a6ef5a
19
pkgs/applications/networking/siproxd/default.nix
Normal file
19
pkgs/applications/networking/siproxd/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -6513,6 +6513,8 @@ let
|
||||
|
||||
semnotes = newScope pkgs.kde4 ../applications/misc/semnotes { };
|
||||
|
||||
siproxd = callPackage ../applications/networking/siproxd { };
|
||||
|
||||
skype_linux = callPackage_i686 ../applications/networking/skype { };
|
||||
|
||||
slim = callPackage ../applications/display-managers/slim { };
|
||||
|
Loading…
Reference in New Issue
Block a user