2016-08-25 01:23:03 +02:00
|
|
|
{ fetchurl, stdenv, ncurses, curl, pkgconfig, gnutls, readline
|
2017-02-14 09:43:33 +01:00
|
|
|
, openssl, perl, sqlite, libjpeg, speex, pcre
|
2016-08-25 01:23:03 +02:00
|
|
|
, ldns, libedit, yasm, which, lua, libopus, libsndfile }:
|
2011-01-21 23:12:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-14 09:43:33 +01:00
|
|
|
name = "freeswitch-1.6.15";
|
2011-01-21 23:12:34 +01:00
|
|
|
|
2012-09-26 22:34:55 +02:00
|
|
|
src = fetchurl {
|
2016-08-25 01:23:03 +02:00
|
|
|
url = "http://files.freeswitch.org/freeswitch-releases/${name}.tar.bz2";
|
2017-02-14 09:43:33 +01:00
|
|
|
sha256 = "071g7229shr9srwzspx29fcx3ccj3rwakkydpc4vdf1q3lldd2ld";
|
2011-01-21 23:12:34 +01:00
|
|
|
};
|
2016-09-03 12:49:59 +02:00
|
|
|
postPatch = "patchShebangs libs/libvpx/build/make/rtcd.pl";
|
2011-01-21 23:12:34 +01:00
|
|
|
|
2016-08-25 01:23:03 +02:00
|
|
|
buildInputs = [
|
2017-02-14 09:43:33 +01:00
|
|
|
openssl ncurses curl pkgconfig gnutls readline perl libjpeg
|
|
|
|
sqlite pcre speex ldns libedit yasm which lua libopus
|
2016-08-25 01:23:03 +02:00
|
|
|
libsndfile
|
|
|
|
];
|
2011-01-21 23:12:34 +01:00
|
|
|
|
2016-03-29 12:58:19 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2014-11-28 18:40:19 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-11 02:38:14 +01:00
|
|
|
|
2011-01-21 23:12:34 +01:00
|
|
|
meta = {
|
|
|
|
description = "Cross-Platform Scalable FREE Multi-Protocol Soft Switch";
|
|
|
|
homepage = http://freeswitch.org/;
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.mpl11;
|
2011-01-21 23:12:34 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric ];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|