nixpkgs/pkgs/servers/sip/freeswitch/default.nix
Lluís Batlle i Rossell 9df13d6bba I remove a commented line for freeswitch parallel build. It failed once
building, for me, with that option, so I take that off.

svn path=/nixpkgs/trunk/; revision=25665
2011-01-21 22:12:39 +00:00

21 lines
653 B
Nix

{ 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;
};
}