nixpkgs/pkgs/development/libraries/lime/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
966 B
Nix
Raw Normal View History

2020-03-20 14:28:42 +00:00
{ bctoolbox
, belle-sip
, cmake
, fetchFromGitLab
2021-03-19 06:06:59 +00:00
, lib
, bc-soci
2020-03-20 14:28:42 +00:00
, sqlite
2021-03-19 06:06:59 +00:00
, stdenv
2020-03-20 14:28:42 +00:00
}:
stdenv.mkDerivation rec {
pname = "lime";
2023-09-01 12:57:05 +00:00
version = "5.2.98";
2020-03-20 14:28:42 +00:00
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
rev = version;
2023-09-01 12:57:05 +00:00
hash = "sha256-LdwXBJpwSA/PoCXL+c1pcX1V2Fq/eR6nNmwBKDM1Vr8=";
2020-03-20 14:28:42 +00:00
};
buildInputs = [
# Made by BC
bctoolbox
belle-sip
# Vendored by BC
bc-soci
sqlite
];
2020-03-20 14:28:42 +00:00
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DENABLE_STATIC=NO" # Do not build static libraries
"-DENABLE_UNIT_TESTS=NO" # Do not build test executables
];
2020-03-20 14:28:42 +00:00
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";
2021-04-02 11:35:15 +00:00
license = licenses.gpl3Only;
2020-03-20 14:28:42 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ jluttine ];
};
}