9 stdenv.mkDerivation rec {
13 src = fetchFromGitLab {
14 domain = "gitlab.linphone.org";
19 hash = "sha256-sLvvQhJ9uVt/dx57xs9ftY/ETi46xmyGDH8372zpqj8=";
22 buildInputs = [ bctoolbox sqlite ];
23 nativeBuildInputs = [ cmake ];
25 # Do not build static libraries
26 cmakeFlags = [ "-DENABLE_STATIC=NO" ];
28 env.NIX_CFLAGS_COMPILE = toString [
30 "-Wno-error=stringop-overflow"
31 "-Wno-error=unused-parameter"
35 description = "Opensource implementation of ZRTP keys exchange protocol. Part of the Linphone project";
36 homepage = "https://gitlab.linphone.org/BC/public/bzrtp";
37 license = licenses.gpl3Plus;
38 platforms = platforms.all;
39 maintainers = with maintainers; [ jluttine ];