Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / bzrtp / default.nix
blob10cc9b72f77fd121a136136a6ecf09d36d2abe79
1 { bctoolbox
2 , cmake
3 , fetchFromGitLab
4 , sqlite
5 , lib
6 , stdenv
7 }:
9 stdenv.mkDerivation rec {
10   pname = "bzrtp";
11   version = "5.2.98";
13   src = fetchFromGitLab {
14     domain = "gitlab.linphone.org";
15     owner = "public";
16     group = "BC";
17     repo = pname;
18     rev = version;
19     hash = "sha256-p3r8GVhxShTanEI/tS8Dq59I7VKMDX1blz6S236XFqQ=";
20   };
22   buildInputs = [ bctoolbox sqlite ];
23   nativeBuildInputs = [ cmake ];
25   # Do not build static libraries
26   cmakeFlags = [ "-DENABLE_STATIC=NO" ];
28   env.NIX_CFLAGS_COMPILE = toString [
29     # Needed with GCC 12
30     "-Wno-error=stringop-overflow"
31     "-Wno-error=unused-parameter"
32   ];
34   meta = with lib; {
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 ];
40   };