summary refs log tree commit diff
path: root/pkgs/servers/sip/freeswitch
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2012-09-26 22:34:55 +0200
committerLluís Batlle i Rossell <viric@viric.name>2012-09-26 22:55:56 +0200
commit27bd526654c2d876324b2192b71d671c8ee39a19 (patch)
treed7519bab4ff69ea66e9d1a12371d43c758efca91 /pkgs/servers/sip/freeswitch
parentcc02b6cc19287e02f8ff2151a98a645151adda19 (diff)
downloadnixlib-27bd526654c2d876324b2192b71d671c8ee39a19.tar
nixlib-27bd526654c2d876324b2192b71d671c8ee39a19.tar.gz
nixlib-27bd526654c2d876324b2192b71d671c8ee39a19.tar.bz2
nixlib-27bd526654c2d876324b2192b71d671c8ee39a19.tar.lz
nixlib-27bd526654c2d876324b2192b71d671c8ee39a19.tar.xz
nixlib-27bd526654c2d876324b2192b71d671c8ee39a19.tar.zst
nixlib-27bd526654c2d876324b2192b71d671c8ee39a19.zip
freeswitch: updating to stable 1.2.3
I'll avoid using the git version; I'm less sure if it's better than the
released stable.
Diffstat (limited to 'pkgs/servers/sip/freeswitch')
-rw-r--r--pkgs/servers/sip/freeswitch/default.nix19
1 files changed, 7 insertions, 12 deletions
diff --git a/pkgs/servers/sip/freeswitch/default.nix b/pkgs/servers/sip/freeswitch/default.nix
index 5b341b7deb93..a1d9940c8871 100644
--- a/pkgs/servers/sip/freeswitch/default.nix
+++ b/pkgs/servers/sip/freeswitch/default.nix
@@ -1,21 +1,16 @@
-{ fetchgit, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl, libjpeg
-, libzrtpcpp, autoconf, automake, libtool }:
+{ fetchurl, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl, libjpeg
+, libzrtpcpp }:
 
 stdenv.mkDerivation rec {
-  name = "freeswitch-git-0db52e6";
+  name = "freeswitch-1.2.3";
 
-  src = fetchgit {
-    url = "git://git.freeswitch.org/freeswitch.git";
-    rev = "0db52e6e556fce584f1850c3a3b87c8f46ff87c5";
-    sha256 = "5cc7161c1ba64c5faf3dda2669e9aafd529eaa66be2fd83f284304444bcab9ff";
+  src = fetchurl {
+    url = http://files.freeswitch.org/freeswitch-1.2.3.tar.bz2;
+    sha256 = "0kfvn5f75c6r6yp18almjz9p6llvpm66gpbxcjswrg3ddgbkzg0k";
   };
 
-  preConfigure = ''
-    ./bootstrap.sh
-  '';
-
   buildInputs = [ ncurses curl pkgconfig gnutls readline openssl perl libjpeg
-    autoconf automake libtool libzrtpcpp ];
+    libzrtpcpp ];
 
   meta = {
     description = "Cross-Platform Scalable FREE Multi-Protocol Soft Switch";