tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
freeswitch: use gcc 4.8 to fix build (ZHF)
Luca Bruno
10 years ago
591d43ec
d4ccd686
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
servers
sip
freeswitch
default.nix
+2
-2
pkgs/servers/sip/freeswitch/default.nix
···
1
1
{ fetchurl, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl, libjpeg
2
2
-
, libzrtpcpp }:
2
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
13
-
libzrtpcpp ];
13
13
+
libzrtpcpp gcc48 ];
14
14
15
15
NIX_CFLAGS_COMPILE = "-Wno-error=cpp";
16
16