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

38 lines
807 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
2020-03-20 14:28:42 +00:00
, soci
, sqlite
2021-03-19 06:06:59 +00:00
, stdenv
2020-03-20 14:28:42 +00:00
}:
stdenv.mkDerivation rec {
pname = "lime";
2021-05-15 05:20:03 +00:00
version = "4.5.14";
2020-03-20 14:28:42 +00:00
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
rev = version;
2021-05-15 05:20:03 +00:00
sha256 = "sha256-ixqJ37+ljAru3hZ512nosTak0G/m6/nnmv2p/s5sVLs=";
2020-03-20 14:28:42 +00:00
};
buildInputs = [ bctoolbox soci belle-sip sqlite ];
nativeBuildInputs = [ cmake ];
# Do not build static libraries
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
meta = with lib; {
2020-03-20 14:28:42 +00:00
description = "End-to-end encryption library for instant messaging";
homepage = "http://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 ];
};
}