nixpkgs/pkgs/development/libraries/belr/default.nix
2021-04-02 11:02:16 +03:00

34 lines
757 B
Nix

{ bctoolbox
, cmake
, fetchFromGitLab
, lib, stdenv
}:
stdenv.mkDerivation rec {
pname = "belr";
version = "4.5.1";
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
rev = version;
sha256 = "0m0s7g8d25nbnafbl76w9v3x7q4jhsypxmz1gg80pj7j34xc2dsd";
};
buildInputs = [ bctoolbox ];
nativeBuildInputs = [ cmake ];
# Do not build static libraries
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
meta = with lib; {
description = "Belledonne Communications' language recognition library";
homepage = "https://gitlab.linphone.org/BC/public/belr";
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ jluttine ];
};
}