lime: init at 4.3.1

This commit is contained in:
Jaakko Luttinen 2020-03-20 16:28:42 +02:00
parent 810dac320a
commit dcf2f1186a
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ bctoolbox
, belle-sip
, cmake
, fetchFromGitLab
, soci
, sqlite
, stdenv
}:
stdenv.mkDerivation rec {
pname = "lime";
version = "4.3.1";
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
rev = version;
sha256 = "1ilpp9ai4sah23ngnxisvmwhrv5jkk5f831yp7smpl225z5nv83g";
};
buildInputs = [ bctoolbox soci belle-sip sqlite ];
nativeBuildInputs = [ cmake ];
# Do not build static libraries
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
meta = with stdenv.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 ];
};
}

View File

@ -20605,6 +20605,8 @@ in
flavour = "git";
};
lime = callPackage ../development/libraries/lime { };
luakit = callPackage ../applications/networking/browsers/luakit {
inherit (luajitPackages) luafilesystem;
};