2020-03-20 15:28:42 +01:00
|
|
|
{ bctoolbox
|
|
|
|
, belle-sip
|
|
|
|
, cmake
|
|
|
|
, fetchFromGitLab
|
2021-03-19 07:06:59 +01:00
|
|
|
, lib
|
2022-01-28 18:57:13 +01:00
|
|
|
, bc-soci
|
2020-03-20 15:28:42 +01:00
|
|
|
, sqlite
|
2021-03-19 07:06:59 +01:00
|
|
|
, stdenv
|
2020-03-20 15:28:42 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "lime";
|
2023-09-01 14:57:05 +02:00
|
|
|
version = "5.2.98";
|
2020-03-20 15:28:42 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.linphone.org";
|
|
|
|
owner = "public";
|
|
|
|
group = "BC";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-09-01 14:57:05 +02:00
|
|
|
hash = "sha256-LdwXBJpwSA/PoCXL+c1pcX1V2Fq/eR6nNmwBKDM1Vr8=";
|
2020-03-20 15:28:42 +01:00
|
|
|
};
|
|
|
|
|
2022-01-28 18:57:13 +01:00
|
|
|
buildInputs = [
|
|
|
|
# Made by BC
|
|
|
|
bctoolbox
|
|
|
|
belle-sip
|
|
|
|
|
|
|
|
# Vendored by BC
|
|
|
|
bc-soci
|
|
|
|
|
|
|
|
sqlite
|
|
|
|
];
|
2020-03-20 15:28:42 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2022-04-21 16:40:39 +02:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DENABLE_STATIC=NO" # Do not build static libraries
|
|
|
|
"-DENABLE_UNIT_TESTS=NO" # Do not build test executables
|
|
|
|
];
|
2020-03-20 15:28:42 +01:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2022-01-28 18:57:13 +01:00
|
|
|
description = "End-to-end encryption library for instant messaging. Part of the Linphone project.";
|
2023-01-21 22:41:12 +01:00
|
|
|
homepage = "https://www.linphone.org/technical-corner/lime";
|
2021-04-02 13:35:15 +02:00
|
|
|
license = licenses.gpl3Only;
|
2020-03-20 15:28:42 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ jluttine ];
|
|
|
|
};
|
|
|
|
}
|