lime: init at 4.3.1
This commit is contained in:
parent
810dac320a
commit
dcf2f1186a
36
pkgs/development/libraries/lime/default.nix
Normal file
36
pkgs/development/libraries/lime/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ bctoolbox
|
||||
, belle-sip
|
||||
, cmake
|
||||
, fetchFromGitLab
|
||||
, soci
|
||||
, sqlite
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lime";
|
||||
version = "4.3.1";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.linphone.org";
|
||||
owner = "public";
|
||||
group = "BC";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1ilpp9ai4sah23ngnxisvmwhrv5jkk5f831yp7smpl225z5nv83g";
|
||||
};
|
||||
|
||||
buildInputs = [ bctoolbox soci belle-sip sqlite ];
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
# Do not build static libraries
|
||||
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "End-to-end encryption library for instant messaging";
|
||||
homepage = "http://www.linphone.org/technical-corner/lime";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ jluttine ];
|
||||
};
|
||||
}
|
@ -20605,6 +20605,8 @@ in
|
||||
flavour = "git";
|
||||
};
|
||||
|
||||
lime = callPackage ../development/libraries/lime { };
|
||||
|
||||
luakit = callPackage ../applications/networking/browsers/luakit {
|
||||
inherit (luajitPackages) luafilesystem;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user