summary refs log tree commit diff
path: root/pkgs/servers/sip/freeswitch/default.nix
blob: 770dc6d277bea45f148c914a4a93037809cb5cf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ fetchurl, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl, libjpeg }:

stdenv.mkDerivation rec {
  name = "freeswitch-1.0.7";

  src = fetchurl {
    url = http://latest.freeswitch.org/freeswitch-1.0.7.tar.gz;
    sha256 = "0r7mqsc50y7aqm8arbwiq75ikwfrrfhhzdf9r070snrf3b8qkj8w";
  };

  buildInputs = [ ncurses curl pkgconfig gnutls readline openssl perl libjpeg ];

  meta = {
    description = "Cross-Platform Scalable FREE Multi-Protocol Soft Switch";
    homepage = http://freeswitch.org/;
    license = "MPL1.1";
    maintainers = with stdenv.lib.maintainers; [ viric ];
    platforms = with stdenv.lib.platforms; linux;
  };
}