mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
38 lines
807 B
Nix
38 lines
807 B
Nix
{ bctoolbox
|
|
, belle-sip
|
|
, cmake
|
|
, fetchFromGitLab
|
|
, lib
|
|
, soci
|
|
, sqlite
|
|
, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lime";
|
|
version = "4.5.14";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.linphone.org";
|
|
owner = "public";
|
|
group = "BC";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-ixqJ37+ljAru3hZ512nosTak0G/m6/nnmv2p/s5sVLs=";
|
|
};
|
|
|
|
buildInputs = [ bctoolbox soci belle-sip sqlite ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
# Do not build static libraries
|
|
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
|
|
|
|
meta = with lib; {
|
|
description = "End-to-end encryption library for instant messaging";
|
|
homepage = "http://www.linphone.org/technical-corner/lime";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
};
|
|
}
|