pjsip: 2.6 -> 2.7.1

authored by Owen Lynch and committed by Robin Gloster d13d8006 59087261

+7 -3
+7 -3
pkgs/applications/networking/pjsip/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "pjsip-${version}"; 5 - version = "2.6"; 5 + version = "2.7.1"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2"; 9 - sha256 = "1d67c58jn22f7h6smkykk5vwl3sqpc7xi2vm3j3lbn3lq6hisnig"; 9 + sha256 = "09ii5hgl5s7grx4fiimcl3s77i385h7b3kwpfa2q0arbl1ibryjr"; 10 10 }; 11 11 12 12 buildInputs = [ openssl libsamplerate alsaLib ]; 13 + 14 + preConfigure = '' 15 + export LD=$CC 16 + ''; 13 17 14 18 postInstall = '' 15 19 mkdir -p $out/bin ··· 25 29 description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE"; 26 30 homepage = http://pjsip.org/; 27 31 license = stdenv.lib.licenses.gpl2Plus; 28 - maintainers = with stdenv.lib.maintainers; [viric]; 32 + maintainers = with stdenv.lib.maintainers; [viric olynch]; 29 33 platforms = with stdenv.lib.platforms; linux; 30 34 }; 31 35 }