ortp: 0.22.0 -> 0.24.1

+7 -11
+6 -8
pkgs/development/libraries/ortp/default.nix
··· 1 - {stdenv, fetchurl, srtp, libzrtpcpp, pkgconfig }: 1 + { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "ortp-0.22.0"; 4 + name = "ortp-0.24.1"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz"; 8 - sha256 = "02rdm6ymgblbx8fnjfvivkl4qkgbdizrf35fyb0vln9m7jdy4dvf"; 8 + sha256 = "1mach7cdq4kydqkll8ra1kir818da07z253rf9pihifipqhcxv6i"; 9 9 }; 10 10 11 - configureFlags = "--enable-zrtp"; 12 - 13 - propagatedBuildInputs = [ srtp libzrtpcpp pkgconfig ]; 14 - 15 - meta = { 11 + meta = with stdenv.lib; { 16 12 description = "A Real-Time Transport Protocol (RFC3550) stack"; 17 13 homepage = http://www.linphone.org/index.php/eng/code_review/ortp; 14 + license = licenses.lgpl21; 15 + platforms = platforms.all; 18 16 }; 19 17 }
+1 -3
pkgs/top-level/all-packages.nix
··· 7191 7191 }; 7192 7192 }; 7193 7193 7194 - ortp = callPackage ../development/libraries/ortp { 7195 - srtp = srtp_linphone; 7196 - }; 7194 + ortp = callPackage ../development/libraries/ortp { }; 7197 7195 7198 7196 p11_kit = callPackage ../development/libraries/p11-kit { }; 7199 7197