summary refs log blame commit diff
path: root/pkgs/development/libraries/bzrtp/default.nix
blob: 2eb5a2dfcffbb3179028149803c712fc98d40d8f (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                 

                         

                    
 




                                   
                  
                                                                    




                                     


                                        

                                                       

                                                                                         


                                                                               

                              
                                                 

    
{ bctoolbox
, cmake
, fetchFromGitLab
, sqlite
, stdenv
}:

stdenv.mkDerivation rec {
  pname = "bzrtp";
  version = "4.3.1";

  src = fetchFromGitLab {
    domain = "gitlab.linphone.org";
    owner = "public";
    group = "BC";
    repo = pname;
    rev = version;
    sha256 = "14fqp6r9rf7z6j5phbsrdxlbjak03hs8kb94b6jgcrcdxrxhy3fy";
  };

  buildInputs = [ bctoolbox sqlite ];
  nativeBuildInputs = [ cmake ];

  # Do not build static libraries
  cmakeFlags = [ "-DENABLE_STATIC=NO" ];

  NIX_CFLAGS_COMPILE = "-Wno-error=cast-function-type";

  meta = with stdenv.lib; {
    description = "BZRTP is an opensource implementation of ZRTP keys exchange protocol";
    homepage = "https://gitlab.linphone.org/BC/public/bzrtp";
    # They have switched to GPLv3 on git HEAD so probably the next release will
    # be GPL3.
    license = licenses.lgpl21;
    platforms = platforms.all;
    maintainers = with maintainers; [ jluttine ];
  };
}