Adding freeswitch
svn path=/nixpkgs/trunk/; revision=25664
This commit is contained in:
parent
bcd44bff51
commit
8cb0db3589
2 changed files with 24 additions and 0 deletions
22
pkgs/servers/sip/freeswitch/default.nix
Normal file
22
pkgs/servers/sip/freeswitch/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ fetchurl, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl, libjpeg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "freeswitch-1.0.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://latest.freeswitch.org/freeswitch-1.0.7.tar.gz;
|
||||
sha256 = "0r7mqsc50y7aqm8arbwiq75ikwfrrfhhzdf9r070snrf3b8qkj8w";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses curl pkgconfig gnutls readline openssl perl libjpeg ];
|
||||
|
||||
# enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "Cross-Platform Scalable FREE Multi-Protocol Soft Switch";
|
||||
homepage = http://freeswitch.org/;
|
||||
license = "MPL1.1";
|
||||
maintainers = with stdenv.lib.maintainers; [ viric ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
|
@ -4408,6 +4408,8 @@ let
|
|||
|
||||
firebird = callPackage ../servers/firebird { };
|
||||
|
||||
freeswitch = callPackage ../servers/sip/freeswitch { };
|
||||
|
||||
ghostOne = callPackage ../servers/games/ghost-one {
|
||||
boost = boostFull;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue