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

39 lines
940 B
Nix
Raw Normal View History

2020-03-20 15:01:19 +00:00
{ bctoolbox
, cmake
, fetchFromGitLab
, sqlite
, stdenv
}:
2018-02-10 05:20:51 +00:00
stdenv.mkDerivation rec {
2020-03-20 15:01:19 +00:00
pname = "bzrtp";
2020-07-03 04:34:18 +01:00
version = "4.4.0";
2018-02-10 05:20:51 +00:00
2020-03-20 15:01:19 +00:00
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
2019-09-09 00:38:31 +01:00
rev = version;
2020-07-03 04:34:18 +01:00
sha256 = "1yjmsbqmymzl4r7sba6w4a2yld8m6hzafr6jf7sj0syhwpnc3zv6";
2018-02-10 05:20:51 +00:00
};
buildInputs = [ bctoolbox sqlite ];
nativeBuildInputs = [ cmake ];
2020-03-20 15:01:19 +00:00
# Do not build static libraries
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
2019-01-11 07:35:06 +00:00
NIX_CFLAGS_COMPILE = "-Wno-error=cast-function-type";
2018-02-10 05:20:51 +00:00
meta = with stdenv.lib; {
description = "BZRTP is an opensource implementation of ZRTP keys exchange protocol";
2020-03-20 15:01:19 +00:00
homepage = "https://gitlab.linphone.org/BC/public/bzrtp";
# They have switched to GPLv3 on git HEAD so probably the next release will
# be GPL3.
2018-02-10 05:20:51 +00:00
license = licenses.lgpl21;
platforms = platforms.all;
2020-03-20 15:01:19 +00:00
maintainers = with maintainers; [ jluttine ];
2018-02-10 05:20:51 +00:00
};
}