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

39 lines
820 B
Nix
Raw Normal View History

2020-03-20 15:28:42 +01:00
{ bctoolbox
, belle-sip
, cmake
, fetchFromGitLab
2021-03-19 07:06:59 +01:00
, lib
2020-03-20 15:28:42 +01:00
, soci
, sqlite
, boost
2021-03-19 07:06:59 +01:00
, stdenv
2020-03-20 15:28:42 +01:00
}:
stdenv.mkDerivation rec {
pname = "lime";
2021-08-01 11:37:51 +02:00
version = "5.0.0";
2020-03-20 15:28:42 +01:00
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
rev = version;
2021-08-01 11:37:51 +02:00
sha256 = "sha256-11vvvA+pud/eOyYsbRKVvGfiyhwdhNPfRQSfaquUro8=";
2020-03-20 15:28:42 +01:00
};
buildInputs = [ bctoolbox soci belle-sip sqlite boost ];
2020-03-20 15:28:42 +01:00
nativeBuildInputs = [ cmake ];
# Do not build static libraries
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
meta = with lib; {
2020-03-20 15:28:42 +01:00
description = "End-to-end encryption library for instant messaging";
homepage = "http://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 ];
};
}