ortp: 0.25.0 -> 0.27.0
This commit is contained in:
parent
e662a8ee6d
commit
599653de54
@ -1,14 +1,20 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl, cmake, fetchFromGitHub, bctoolbox }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ortp-${version}";
|
baseName = "ortp";
|
||||||
version = "0.25.0";
|
version = "0.27.0";
|
||||||
|
name = "${baseName}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
|
owner = "BelledonneCommunications";
|
||||||
sha256 = "16ldzrn1268dr6kdl8mibg2knd6w75a1v0iqfsgk5zdig5mq5sqd";
|
repo = "${baseName}";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "0gjaaph4pamay9gn1yn7ky5wyzhj93r53rwak7h8s48vf08fqyv7";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ bctoolbox ];
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A Real-Time Transport Protocol (RFC3550) stack";
|
description = "A Real-Time Transport Protocol (RFC3550) stack";
|
||||||
homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
|
homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user