mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
48 lines
965 B
Nix
48 lines
965 B
Nix
{ bctoolbox
|
|
, belle-sip
|
|
, cmake
|
|
, fetchFromGitLab
|
|
, lib
|
|
, bc-soci
|
|
, sqlite
|
|
, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lime";
|
|
version = "5.2.98";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.linphone.org";
|
|
owner = "public";
|
|
group = "BC";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-LdwXBJpwSA/PoCXL+c1pcX1V2Fq/eR6nNmwBKDM1Vr8=";
|
|
};
|
|
|
|
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 = "https://www.linphone.org/technical-corner/lime";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
};
|
|
}
|