mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 05:43:17 +00:00
fe8f77c2c0
A lot of bloat had been accumulated through updates (e.g. with linphone migrating from Gtk to Qt, or linphone being split to liblinphone & linphone-desktop). Method: Through trial and error. Delete all dependencies, try to build, try to run, reintroduce missing dependencies. I have tested everything I could, but it is possible that some optional features have been silently disabled with dependencies not being found now. (Codecs, encryption schemes, etc...)
49 lines
967 B
Nix
49 lines
967 B
Nix
{ bctoolbox
|
|
, belle-sip
|
|
, cmake
|
|
, fetchFromGitLab
|
|
, lib
|
|
, bc-soci
|
|
, sqlite
|
|
, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lime";
|
|
version = "5.1.12";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.linphone.org";
|
|
owner = "public";
|
|
group = "BC";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-vgaxb8sfgtAhqG8kg3C4+UrTOHyTVR9QVO9iuKFgSBk=";
|
|
};
|
|
|
|
buildInputs = [
|
|
# Made by BC
|
|
bctoolbox
|
|
belle-sip
|
|
|
|
# Vendored by BC
|
|
bc-soci
|
|
|
|
sqlite
|
|
];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_STATIC=NO" # Do not build static libraries
|
|
"-DENABLE_UNIT_TESTS=NO" # Do not build test executables
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "End-to-end encryption library for instant messaging. Part of the Linphone project.";
|
|
homepage = "http://www.linphone.org/technical-corner/lime";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
};
|
|
}
|