nixpkgs/pkgs/servers/sip/freeswitch/default.nix

154 lines
3.3 KiB
Nix
Raw Normal View History

2021-05-10 14:42:19 +02:00
{ fetchFromGitHub, stdenv, lib, pkg-config, autoreconfHook
2020-01-01 22:07:45 +01:00
, ncurses, gnutls, readline
, openssl, perl, sqlite, libjpeg, speex, pcre, libuuid
2020-01-01 22:07:45 +01:00
, ldns, libedit, yasm, which, libsndfile, libtiff
, callPackage
, SystemConfiguration
2020-01-01 22:07:45 +01:00
, modules ? null
2020-05-11 16:02:16 +02:00
, nixosTests
}:
let
availableModules = callPackage ./modules.nix { };
# the default list from v1.8.7, except with applications/mod_signalwire also disabled
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
2020-01-01 22:07:45 +01:00
databases.mariadb
databases.pgsql
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
] ++ lib.optionals stdenv.isLinux [ endpoints.gsmopen ];
enabledModules = (if modules != null then modules else defaultModules) availableModules;
modulesConf = let
lst = builtins.map (mod: mod.path) enabledModules;
str = lib.strings.concatStringsSep "\n" lst;
in builtins.toFile "modules.conf" str;
in
stdenv.mkDerivation rec {
2020-01-01 22:07:45 +01:00
pname = "freeswitch";
2021-10-31 11:40:58 +01:00
version = "1.10.7";
2020-01-01 22:07:45 +01:00
src = fetchFromGitHub {
owner = "signalwire";
repo = pname;
rev = "v${version}";
2021-10-31 11:40:58 +01:00
sha256 = "0npdvidvsi4dhwswdwilff4p3x04qmz7hgs9sdadiy2w83qb6alf";
};
2017-09-16 12:08:08 +02:00
postPatch = ''
patchShebangs libs/libvpx/build/make/rtcd.pl
substituteInPlace libs/libvpx/build/make/configure.sh \
--replace AS=\''${AS} AS=yasm
# Disable advertisement banners
for f in src/include/cc.h libs/esl/src/include/cc.h; do
{
echo 'const char *cc = "";'
echo 'const char *cc_s = "";'
} > $f
done
2017-09-16 12:08:08 +02:00
'';
2021-05-10 20:22:46 +02:00
strictDeps = true;
nativeBuildInputs = [ pkg-config autoreconfHook perl which yasm ];
2016-08-25 01:23:03 +02:00
buildInputs = [
openssl ncurses gnutls readline libjpeg
sqlite pcre speex ldns libedit
2019-02-11 18:17:56 +01:00
libsndfile libtiff
libuuid
]
++ lib.unique (lib.concatMap (mod: mod.inputs) enabledModules)
++ lib.optionals stdenv.isDarwin [ SystemConfiguration ];
enableParallelBuilding = true;
2016-03-29 12:58:19 +02:00
NIX_CFLAGS_COMPILE = "-Wno-error";
2021-10-31 11:40:58 +01:00
CFLAGS = "-D_ANSI_SOURCE";
hardeningDisable = [ "format" ];
2016-02-11 02:38:14 +01:00
preConfigure = ''
2020-01-01 22:07:45 +01:00
./bootstrap.sh
cp "${modulesConf}" modules.conf
'';
postInstall = ''
# helper for compiling modules... not generally useful; also pulls in perl dependency
rm "$out"/bin/fsxs
# include configuration templates
cp -r conf $out/share/freeswitch/
'';
2020-05-11 16:02:16 +02:00
passthru.tests.freeswitch = nixosTests.freeswitch;
meta = {
description = "Cross-Platform Scalable FREE Multi-Protocol Soft Switch";
homepage = "https://freeswitch.org/";
2021-01-15 08:07:56 +01:00
license = lib.licenses.mpl11;
maintainers = with lib.maintainers; [ misuzu ];
platforms = with lib.platforms; unix;
};
}