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





                 
             



                         
                     






                                   
                                                                    







                                                    
                    






                                                                        
{ bctoolbox
, belle-sip
, cmake
, fetchFromGitLab
, soci
, sqlite
, lib, stdenv
}:

stdenv.mkDerivation rec {
  pname = "lime";
  version = "4.4.34";

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

  buildInputs = [ bctoolbox soci belle-sip sqlite ];
  nativeBuildInputs = [ cmake ];

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

  meta = with lib; {
    description = "End-to-end encryption library for instant messaging";
    homepage = "http://www.linphone.org/technical-corner/lime";
    license = licenses.gpl3;
    platforms = platforms.all;
    maintainers = with maintainers; [ jluttine ];
  };
}