9 stdenv.mkDerivation rec {
13 src = fetchFromGitLab {
14 domain = "gitlab.linphone.org";
19 hash = "sha256-p3r8GVhxShTanEI/tS8Dq59I7VKMDX1blz6S236XFqQ=";
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 = "An 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 ];