bzrtp: init at 1.0.6

This commit is contained in:
adisbladis 2018-02-10 13:20:51 +08:00
parent 0dbe0ad242
commit 611ed16125
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, cmake, fetchFromGitHub, bctoolbox, sqlite }:
stdenv.mkDerivation rec {
baseName = "bzrtp";
version = "1.0.6";
name = "${baseName}-${version}";
src = fetchFromGitHub {
owner = "BelledonneCommunications";
repo = "${baseName}";
rev = "${version}";
sha256 = "0438zzxp82bj5fmvqnwlljkgrz9ab5qm5lgpwwgmg1cp78bp2l45";
};
buildInputs = [ bctoolbox sqlite ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "BZRTP is an opensource implementation of ZRTP keys exchange protocol";
homepage = https://github.com/BelledonneCommunications/bzrtp;
license = licenses.lgpl21;
platforms = platforms.all;
};
}

View File

@ -8219,6 +8219,8 @@ with pkgs;
bwidget = callPackage ../development/libraries/bwidget { };
bzrtp = callPackage ../development/libraries/bzrtp { };
c-ares = callPackage ../development/libraries/c-ares {
fetchurl = fetchurlBoot;
};