Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

freeswitch: use gcc 4.8 to fix build (ZHF)

+2 -2
+2 -2
pkgs/servers/sip/freeswitch/default.nix
··· 1 1 { fetchurl, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl, libjpeg 2 - , libzrtpcpp }: 2 + , libzrtpcpp, gcc48 }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "freeswitch-1.2.3"; ··· 10 10 }; 11 11 12 12 buildInputs = [ ncurses curl pkgconfig gnutls readline openssl perl libjpeg 13 - libzrtpcpp ]; 13 + libzrtpcpp gcc48 ]; 14 14 15 15 NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; 16 16