2012-09-26 22:34:55 +02:00
|
|
|
{ fetchurl, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl, libjpeg
|
|
|
|
, libzrtpcpp }:
|
2011-01-21 23:12:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-09-26 22:34:55 +02:00
|
|
|
name = "freeswitch-1.2.3";
|
2011-01-21 23:12:34 +01:00
|
|
|
|
2012-09-26 22:34:55 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = http://files.freeswitch.org/freeswitch-1.2.3.tar.bz2;
|
|
|
|
sha256 = "0kfvn5f75c6r6yp18almjz9p6llvpm66gpbxcjswrg3ddgbkzg0k";
|
2011-01-21 23:12:34 +01:00
|
|
|
};
|
|
|
|
|
2012-07-02 22:17:38 +02:00
|
|
|
buildInputs = [ ncurses curl pkgconfig gnutls readline openssl perl libjpeg
|
2012-09-26 22:34:55 +02:00
|
|
|
libzrtpcpp ];
|
2011-01-21 23:12:34 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|