10 stdenv.mkDerivation rec {
14 src = fetchFromGitLab {
15 domain = "gitlab.linphone.org";
20 hash = "sha256-sLvvQhJ9uVt/dx57xs9ftY/ETi46xmyGDH8372zpqj8=";
27 nativeBuildInputs = [ cmake ];
29 # Do not build static libraries
30 cmakeFlags = [ "-DENABLE_STATIC=NO" ];
32 env.NIX_CFLAGS_COMPILE = toString [
34 "-Wno-error=stringop-overflow"
35 "-Wno-error=unused-parameter"
39 description = "Opensource implementation of ZRTP keys exchange protocol. Part of the Linphone project";
40 homepage = "https://gitlab.linphone.org/BC/public/bzrtp";
41 license = licenses.gpl3Plus;
42 platforms = platforms.all;
43 maintainers = with maintainers; [ jluttine ];