bctoolbox: fix cross-compilation

This commit is contained in:
Nikolay Korotkiy 2022-04-25 11:53:56 +03:00
parent cded9b18c0
commit 8037d235e2
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -9,8 +9,8 @@ stdenv.mkDerivation rec {
pname = "bctoolbox";
version = "5.1.17";
nativeBuildInputs = [ cmake bcunit ];
buildInputs = [ mbedtls ];
nativeBuildInputs = [ cmake ];
buildInputs = [ mbedtls bcunit ];
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
@ -26,6 +26,8 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = [ "-Wno-error=stringop-truncation" ];
strictDeps = true;
meta = with lib; {
description = "Utilities library for Linphone";
homepage = "https://gitlab.linphone.org/BC/public/bctoolbox";