2020-01-01 16:00:02 +00:00
|
|
|
{ fetchurl, stdenv, lib, ncurses, curl, pkgconfig, gnutls, readline
|
|
|
|
, openssl, perl, sqlite, libjpeg, speex, pcre
|
|
|
|
, ldns, libedit, yasm, which, lua, libopus, libsndfile, libtiff
|
|
|
|
, libctb, gsmlib
|
|
|
|
|
|
|
|
, modules ? null
|
|
|
|
, postgresql
|
|
|
|
, enablePostgres ? true
|
|
|
|
|
|
|
|
, SystemConfiguration
|
|
|
|
}:
|
|
|
|
|
2019-02-11 17:14:43 +00:00
|
|
|
let
|
|
|
|
|
2020-01-01 16:00:02 +00:00
|
|
|
availableModules = import ./modules.nix { inherit curl lua libopus libctb gsmlib; };
|
|
|
|
|
2019-08-04 10:34:15 +01:00
|
|
|
# the default list from v1.8.7, except with applications/mod_signalwire also disabled
|
2019-02-11 17:14:43 +00:00
|
|
|
defaultModules = mods: with mods; [
|
|
|
|
applications.commands
|
|
|
|
applications.conference
|
|
|
|
applications.db
|
|
|
|
applications.dptools
|
|
|
|
applications.enum
|
|
|
|
applications.esf
|
|
|
|
applications.expr
|
|
|
|
applications.fifo
|
|
|
|
applications.fsv
|
|
|
|
applications.hash
|
|
|
|
applications.httapi
|
|
|
|
applications.sms
|
|
|
|
applications.spandsp
|
|
|
|
applications.valet_parking
|
|
|
|
applications.voicemail
|
|
|
|
|
|
|
|
applications.curl
|
|
|
|
|
|
|
|
codecs.amr
|
|
|
|
codecs.b64
|
|
|
|
codecs.g723_1
|
|
|
|
codecs.g729
|
|
|
|
codecs.h26x
|
|
|
|
codecs.opus
|
|
|
|
|
|
|
|
dialplans.asterisk
|
|
|
|
dialplans.xml
|
|
|
|
|
|
|
|
endpoints.loopback
|
|
|
|
endpoints.rtc
|
|
|
|
endpoints.skinny
|
|
|
|
endpoints.sofia
|
|
|
|
endpoints.verto
|
|
|
|
|
|
|
|
event_handlers.cdr_csv
|
|
|
|
event_handlers.cdr_sqlite
|
|
|
|
event_handlers.event_socket
|
|
|
|
|
|
|
|
formats.local_stream
|
|
|
|
formats.native_file
|
|
|
|
formats.png
|
|
|
|
formats.sndfile
|
|
|
|
formats.tone_stream
|
|
|
|
|
|
|
|
languages.lua
|
|
|
|
|
|
|
|
loggers.console
|
|
|
|
loggers.logfile
|
|
|
|
loggers.syslog
|
|
|
|
|
|
|
|
say.en
|
|
|
|
|
|
|
|
xml_int.cdr
|
|
|
|
xml_int.rpc
|
|
|
|
xml_int.scgi
|
2020-01-01 16:00:02 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [ endpoints.gsmopen ];
|
2019-02-11 17:14:43 +00:00
|
|
|
|
2020-01-01 16:00:02 +00:00
|
|
|
enabledModules = (if modules != null then modules else defaultModules) availableModules;
|
2019-02-11 17:14:43 +00:00
|
|
|
|
|
|
|
modulesConf = let
|
|
|
|
lst = builtins.map (mod: mod.path) enabledModules;
|
|
|
|
str = lib.strings.concatStringsSep "\n" lst;
|
|
|
|
in builtins.toFile "modules.conf" str;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2011-01-21 22:12:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-04 10:34:15 +01:00
|
|
|
name = "freeswitch-1.8.7";
|
2011-01-21 22:12:34 +00:00
|
|
|
|
2012-09-26 21:34:55 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://files.freeswitch.org/freeswitch-releases/${name}.tar.bz2";
|
2019-08-04 10:34:15 +01:00
|
|
|
sha256 = "0k52mxdfc5w9fdnz8kvfjiwnnjjhnpkirnyrfkhq7bad84m731z4";
|
2011-01-21 22:12:34 +00:00
|
|
|
};
|
2017-09-16 11:08:08 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs libs/libvpx/build/make/rtcd.pl
|
|
|
|
substituteInPlace libs/libvpx/build/make/configure.sh \
|
|
|
|
--replace AS=\''${AS} AS=yasm
|
|
|
|
'';
|
2011-01-21 22:12:34 +00:00
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-08-25 00:23:03 +01:00
|
|
|
buildInputs = [
|
2019-02-11 17:17:56 +00:00
|
|
|
openssl ncurses gnutls readline perl libjpeg
|
|
|
|
sqlite pcre speex ldns libedit yasm which
|
|
|
|
libsndfile libtiff
|
2019-02-01 22:39:15 +00:00
|
|
|
]
|
2019-02-11 17:14:43 +00:00
|
|
|
++ lib.unique (lib.concatMap (mod: mod.inputs) enabledModules)
|
2019-02-01 22:39:15 +00:00
|
|
|
++ lib.optionals enablePostgres [ postgresql ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ SystemConfiguration ];
|
2011-01-21 22:12:34 +00:00
|
|
|
|
2016-03-29 11:58:19 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2014-11-28 17:40:19 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-11 01:38:14 +00:00
|
|
|
|
2019-02-01 22:39:15 +00:00
|
|
|
configureFlags = lib.optionals enablePostgres [ "--enable-core-pgsql-support" ];
|
|
|
|
|
2019-02-11 17:14:43 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cp "${modulesConf}" modules.conf
|
|
|
|
'';
|
|
|
|
|
2019-02-12 15:54:36 +00:00
|
|
|
postInstall = ''
|
|
|
|
# helper for compiling modules... not generally useful; also pulls in perl dependency
|
|
|
|
rm "$out"/bin/fsxs
|
|
|
|
'';
|
|
|
|
|
2011-01-21 22:12:34 +00:00
|
|
|
meta = {
|
|
|
|
description = "Cross-Platform Scalable FREE Multi-Protocol Soft Switch";
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://freeswitch.org/;
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.mpl11;
|
2020-01-01 16:00:02 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ misuzu ];
|
2018-12-10 22:49:26 +00:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2011-01-21 22:12:34 +00:00
|
|
|
};
|
|
|
|
}
|