2012-07-02 22:17:38 +02:00
|
|
|
{ fetchgit, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl, libjpeg
|
|
|
|
, libzrtpcpp, autoconf, automake, libtool }:
|
2011-01-21 23:12:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-07-02 22:17:38 +02:00
|
|
|
name = "freeswitch-git-0db52e6";
|
2011-01-21 23:12:34 +01:00
|
|
|
|
2012-07-02 22:17:38 +02:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.freeswitch.org/freeswitch.git";
|
|
|
|
rev = "0db52e6e556fce584f1850c3a3b87c8f46ff87c5";
|
|
|
|
sha256 = "5cc7161c1ba64c5faf3dda2669e9aafd529eaa66be2fd83f284304444bcab9ff";
|
2011-01-21 23:12:34 +01:00
|
|
|
};
|
|
|
|
|
2012-07-02 22:17:38 +02:00
|
|
|
preConfigure = ''
|
|
|
|
./bootstrap.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ ncurses curl pkgconfig gnutls readline openssl perl libjpeg
|
|
|
|
autoconf automake libtool 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;
|
|
|
|
};
|
|
|
|
}
|