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

38 lines
849 B
Nix
Raw Normal View History

2020-03-20 08:31:25 +00:00
{ bcunit
, cmake
, fetchFromGitLab
, mbedtls
, stdenv
}:
2016-09-05 23:16:45 +01:00
stdenv.mkDerivation rec {
pname = "bctoolbox";
version = "4.4.21";
nativeBuildInputs = [ cmake bcunit ];
buildInputs = [ mbedtls ];
2020-03-20 08:31:25 +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-12-01 15:03:00 +00:00
sha256 = "0bfswwvvdshaahg4jd2j10f0sci8809s4khajd0m6b059zwc7y25";
2016-09-05 23:16:45 +01:00
};
2020-03-20 08:31:25 +00:00
# Do not build static libraries
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
2019-12-26 16:29:16 +00:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=stringop-truncation" ];
2020-03-20 08:31:25 +00:00
meta = with stdenv.lib; {
2016-09-05 23:16:45 +01:00
inherit version;
description = "Utilities library for Linphone";
2020-03-20 08:31:25 +00:00
homepage = "https://gitlab.linphone.org/BC/public/bctoolbox";
license = licenses.gpl3Plus;
2020-03-20 08:31:25 +00:00
maintainers = with maintainers; [ raskin jluttine ];
platforms = platforms.linux;
2016-09-05 23:16:45 +01:00
};
}