2017-04-26 10:25:20 +00:00
|
|
|
{ stdenv, pkgs, lib, fetchurl, fetchgit, fetchsvn, fetchpatch,
|
2016-12-28 22:04:58 +00:00
|
|
|
jansson, libxml2, libxslt, ncurses, openssl, sqlite,
|
|
|
|
utillinux, dmidecode, libuuid, binutils, newt,
|
2017-02-09 07:26:57 +00:00
|
|
|
lua, speex,
|
2017-02-23 20:40:37 +00:00
|
|
|
srtp, wget, curl
|
2016-12-28 22:04:58 +00:00
|
|
|
}:
|
2015-04-16 17:42:17 +00:00
|
|
|
|
2017-02-02 14:11:54 +00:00
|
|
|
let
|
|
|
|
common = {version, sha256, externals}: stdenv.mkDerivation rec {
|
|
|
|
inherit version;
|
|
|
|
name = "asterisk-${version}";
|
|
|
|
|
2017-02-23 20:40:37 +00:00
|
|
|
buildInputs = [ jansson libxml2 libxslt ncurses openssl sqlite utillinux dmidecode libuuid binutils newt lua speex srtp wget curl ];
|
2017-02-02 14:11:54 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# We want the Makefile to install the default /var skeleton
|
|
|
|
# under ${out}/var but we also want to use /var at runtime.
|
|
|
|
# This patch changes the runtime behavior to look for state
|
|
|
|
# directories in /var rather than ${out}/var.
|
|
|
|
./runtime-vardirs.patch
|
2017-04-26 10:25:20 +00:00
|
|
|
(fetchpatch {
|
|
|
|
url = "http://sources.debian.net/data/main/a/asterisk/1:13.14.1~dfsg-1/debian/patches/pjsip_unresolved_symbol.patch";
|
|
|
|
sha256 = "0i6a6zplvzbjcvxqlmr87jmrfza7c3qx0rlym2nlmzzp2m7qpnfp";
|
|
|
|
})
|
2017-02-02 14:11:54 +00:00
|
|
|
];
|
|
|
|
|
2017-04-26 10:31:56 +00:00
|
|
|
# Disable MD5 verification for pjsip
|
|
|
|
postPatch = ''
|
|
|
|
sed -i 's|$(verify_tarball)|true|' third-party/pjproject/Makefile
|
|
|
|
'';
|
|
|
|
|
2017-02-02 14:11:54 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/asterisk-${version}.tar.gz";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
# The default libdir is $PREFIX/usr/lib, which causes problems when paths
|
|
|
|
# compiled into Asterisk expect ${out}/usr/lib rather than ${out}/lib.
|
|
|
|
|
|
|
|
# Copy in externals to avoid them being downloaded;
|
|
|
|
# they have to be copied, because the modification date is checked.
|
|
|
|
# If you are getting a permission denied error on this dir,
|
|
|
|
# you're likely missing an automatically downloaded dependency
|
|
|
|
preConfigure = ''
|
|
|
|
mkdir externals_cache
|
|
|
|
'' + lib.concatStringsSep "\n"
|
2017-02-23 20:40:37 +00:00
|
|
|
(lib.mapAttrsToList (dst: src: "cp -r --no-preserve=mode ${src} ${dst}") externals) + ''
|
2017-02-02 14:11:54 +00:00
|
|
|
|
|
|
|
chmod -w externals_cache
|
|
|
|
'';
|
|
|
|
configureFlags = [
|
|
|
|
"--libdir=\${out}/lib"
|
|
|
|
"--with-lua=${lua}/lib"
|
|
|
|
"--with-pjproject-bundled"
|
|
|
|
"--with-externals-cache=$(PWD)/externals_cache"
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
make menuselect.makeopts
|
|
|
|
substituteInPlace menuselect.makeopts --replace 'format_mp3 ' ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Install sample configuration files for this version of Asterisk
|
|
|
|
make samples
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Software implementation of a telephone private branch exchange (PBX)";
|
|
|
|
homepage = http://www.asterisk.org/;
|
|
|
|
license = licenses.gpl2;
|
2017-02-02 14:12:33 +00:00
|
|
|
maintainers = with maintainers; [ auntie DerTim1 yorickvp ];
|
2017-02-02 14:11:54 +00:00
|
|
|
};
|
2015-04-16 17:42:17 +00:00
|
|
|
};
|
|
|
|
|
2017-04-26 10:31:56 +00:00
|
|
|
pjproject-26 = fetchurl {
|
|
|
|
url = http://www.pjsip.org/release/2.6/pjproject-2.6.tar.bz2;
|
|
|
|
sha256 = "1d67c58jn22f7h6smkykk5vwl3sqpc7xi2vm3j3lbn3lq6hisnig";
|
|
|
|
};
|
|
|
|
|
2017-02-23 20:40:37 +00:00
|
|
|
mp3-202 = fetchsvn {
|
|
|
|
url = http://svn.digium.com/svn/thirdparty/mp3/trunk;
|
|
|
|
rev = 202;
|
|
|
|
sha256 = "1s9idx2miwk178sa731ig9r4fzx4gy1q8xazfqyd7q4lfd70s1cy";
|
|
|
|
};
|
|
|
|
|
2017-02-02 14:11:54 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
|
|
|
|
asterisk-lts = common {
|
2017-09-05 11:03:45 +00:00
|
|
|
version = "13.17.1";
|
|
|
|
sha256 = "0d7vqpkz0wv8d17vi7qxs9j7dbqwf4n80s411qva030hljcmdqdf";
|
2017-02-02 14:11:54 +00:00
|
|
|
externals = {
|
2017-04-26 10:35:45 +00:00
|
|
|
"externals_cache/pjproject-2.6.tar.bz2" = pjproject-26;
|
2017-02-23 20:40:37 +00:00
|
|
|
"addons/mp3" = mp3-202;
|
2017-02-02 14:11:54 +00:00
|
|
|
};
|
2015-04-16 17:42:17 +00:00
|
|
|
};
|
2017-02-02 14:11:54 +00:00
|
|
|
|
|
|
|
asterisk-stable = common {
|
2017-09-05 11:03:28 +00:00
|
|
|
version = "14.6.1";
|
|
|
|
sha256 = "0xg26p8rx9gw1ym9xdnpxr7bqp0kp76afy7f4ywmh25ki41inz08";
|
2017-02-02 14:11:54 +00:00
|
|
|
externals = {
|
2017-04-26 10:31:56 +00:00
|
|
|
"externals_cache/pjproject-2.6.tar.bz2" = pjproject-26;
|
2017-02-23 20:40:37 +00:00
|
|
|
"addons/mp3" = mp3-202;
|
2017-02-02 14:11:54 +00:00
|
|
|
};
|
2015-04-16 17:42:17 +00:00
|
|
|
};
|
2017-02-02 14:11:54 +00:00
|
|
|
|
|
|
|
# asterisk-git = common {
|
|
|
|
# version = "15-pre";
|
|
|
|
# sha256 = "...";
|
|
|
|
# externals = {
|
|
|
|
# "externals_cache/pjproject-2.5.5.tar.bz2" = pjproject-255;
|
|
|
|
# Note that these sounds are included with the release tarball. They are
|
|
|
|
# provided here verbatim for the convenience of anyone wanting to build
|
|
|
|
# Asterisk from other sources. Include in externals.
|
|
|
|
# "sounds/asterisk-core-sounds-en-gsm-1.5.tar.gz" = fetchurl {
|
|
|
|
# url = http://downloads.asterisk.org/pub/telephony/sounds/releases/asterisk-core-sounds-en-gsm-1.5.tar.gz;
|
|
|
|
# sha256 = "01xzbg7xy0c5zg7sixjw5025pvr4z64kfzi9zvx19im0w331h4cd";
|
|
|
|
# };
|
|
|
|
# "sounds/asterisk-moh-opsound-wav-2.03.tar.gz" = fetchurl {
|
|
|
|
# url = http://downloads.asterisk.org/pub/telephony/sounds/releases/asterisk-moh-opsound-wav-2.03.tar.gz;
|
|
|
|
# sha256 = "449fb810d16502c3052fedf02f7e77b36206ac5a145f3dacf4177843a2fcb538";
|
|
|
|
# };
|
|
|
|
# TODO: Sounds for other languages could be added here
|
|
|
|
# }
|
|
|
|
# }.overrideDerivation (_: {src = fetchgit {...}})
|
|
|
|
|
2015-04-16 17:42:17 +00:00
|
|
|
}
|