summary refs log tree commit diff
path: root/pkgs/servers/sip/freeswitch
diff options
context:
space:
mode:
authorPatrick Mahoney <pat@polycrystal.org>2019-02-11 11:17:56 -0600
committerPatrick Mahoney <pat@polycrystal.org>2019-02-12 13:53:26 -0600
commit085725bd432cbf4aa19dd43c71f46f6f99b07ca0 (patch)
tree9167c01335e9772196576350755a5e2ecf8ee81b /pkgs/servers/sip/freeswitch
parent540b35f8303dc208aa59498d6cb3a6112c9207ec (diff)
downloadnixpkgs-085725bd432cbf4aa19dd43c71f46f6f99b07ca0.tar
nixpkgs-085725bd432cbf4aa19dd43c71f46f6f99b07ca0.tar.gz
nixpkgs-085725bd432cbf4aa19dd43c71f46f6f99b07ca0.tar.bz2
nixpkgs-085725bd432cbf4aa19dd43c71f46f6f99b07ca0.tar.lz
nixpkgs-085725bd432cbf4aa19dd43c71f46f6f99b07ca0.tar.xz
nixpkgs-085725bd432cbf4aa19dd43c71f46f6f99b07ca0.tar.zst
nixpkgs-085725bd432cbf4aa19dd43c71f46f6f99b07ca0.zip
freeswitch: 1.6.20 -> 1.8.5
Diffstat (limited to 'pkgs/servers/sip/freeswitch')
-rw-r--r--pkgs/servers/sip/freeswitch/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/servers/sip/freeswitch/default.nix b/pkgs/servers/sip/freeswitch/default.nix
index 1795c645aa4..a1ecbaf8b0d 100644
--- a/pkgs/servers/sip/freeswitch/default.nix
+++ b/pkgs/servers/sip/freeswitch/default.nix
@@ -63,7 +63,7 @@ in
 
 { fetchurl, stdenv, lib, ncurses, curl, pkgconfig, gnutls, readline
 , openssl, perl, sqlite, libjpeg, speex, pcre
-, ldns, libedit, yasm, which, lua, libopus, libsndfile
+, ldns, libedit, yasm, which, lua, libopus, libsndfile, libtiff
 
 , modules ? defaultModules
 , postgresql
@@ -86,11 +86,11 @@ modulesConf = let
 in
 
 stdenv.mkDerivation rec {
-  name = "freeswitch-1.6.20";
+  name = "freeswitch-1.8.5";
 
   src = fetchurl {
     url = "https://files.freeswitch.org/freeswitch-releases/${name}.tar.bz2";
-    sha256 = "0hqz68abs5x5vzf1mndcvdi35nrhmnklzdrnrk8dyvzvz67hp2ah";
+    sha256 = "00xdrx84pw2v5pw1r5gfbb77nmvlfj275pmd48yfrc9g8c91j1sr";
   };
   postPatch = ''
     patchShebangs     libs/libvpx/build/make/rtcd.pl
@@ -100,9 +100,9 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [
-    openssl ncurses curl gnutls readline perl libjpeg
-    sqlite pcre speex ldns libedit yasm which lua libopus
-    libsndfile
+    openssl ncurses gnutls readline perl libjpeg
+    sqlite pcre speex ldns libedit yasm which
+    libsndfile libtiff
   ]
   ++ lib.unique (lib.concatMap (mod: mod.inputs) enabledModules)
   ++ lib.optionals enablePostgres [ postgresql ]