mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
49 lines
889 B
Nix
49 lines
889 B
Nix
{ bcunit
|
|
, cmake
|
|
, bc-decaf
|
|
, fetchFromGitLab
|
|
, mbedtls_2
|
|
, lib
|
|
, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bctoolbox";
|
|
version = "5.2.16";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
buildInputs = [
|
|
# Made by BC
|
|
bcunit
|
|
|
|
# Vendored by BC
|
|
bc-decaf
|
|
|
|
mbedtls_2
|
|
];
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.linphone.org";
|
|
owner = "public";
|
|
group = "BC";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-M2apFibqSKp8ojXl82W+vQb7CUxdbWsmw8PLL/ByYuM=";
|
|
};
|
|
|
|
# Do not build static libraries
|
|
cmakeFlags = [ "-DENABLE_STATIC=NO" "-DENABLE_STRICT=NO" ];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Utilities library for Linphone";
|
|
homepage = "https://gitlab.linphone.org/BC/public/bctoolbox";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ raskin jluttine ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|