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