Merge pull request #17970 from adolfogc/pjsip

pjsip: 2.1 -> 2.5.5

authored by

Joachim F and committed by
GitHub
986e6428 400995e4

+7 -6
+7 -6
pkgs/applications/networking/pjsip/default.nix
··· 1 - {stdenv, fetchurl, openssl, libsamplerate}: 1 + { stdenv, fetchurl, openssl, libsamplerate, alsaLib }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "pjsip-2.1"; 4 + name = "pjsip-${version}"; 5 + version = "2.5.5"; 5 6 6 7 src = fetchurl { 7 - url = http://www.pjsip.org/release/2.1/pjproject-2.1.tar.bz2; 8 - md5 = "310eb63638dac93095f6a1fc8ee1f578"; 8 + url = "http://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2"; 9 + sha256 = "ab39207b761d3485199cd881410afeb2d171dff7c2bf75e8caae91c6dca508f3"; 9 10 }; 10 11 11 - buildInputs = [ openssl libsamplerate ]; 12 + buildInputs = [ openssl libsamplerate alsaLib ]; 12 13 13 14 postInstall = '' 14 15 mkdir -p $out/bin ··· 21 22 dontPatchELF = true; 22 23 23 24 meta = { 24 - description = "SIP stack and media stack for presence, im, and multimedia communication"; 25 + description = "A multimedia communication library written in C, implementing standard based protocols such as SIP, SDP, RTP, STUN, TURN, and ICE"; 25 26 homepage = http://pjsip.org/; 26 27 license = stdenv.lib.licenses.gpl2Plus; 27 28 maintainers = with stdenv.lib.maintainers; [viric];