lime: init at 4.3.1

wip/yesman
Jaakko Luttinen 4 years ago
parent 810dac320a
commit dcf2f1186a
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964
  1. 36
      pkgs/development/libraries/lime/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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…
Cancel
Save