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

34 lines
757 B
Nix
Raw Normal View History

2020-03-20 15:00:54 +00:00
{ bctoolbox
, cmake
, fetchFromGitLab
, lib, stdenv
2020-03-20 15:00:54 +00:00
}:
2018-02-10 05:21:47 +00:00
stdenv.mkDerivation rec {
2020-03-20 15:00:54 +00:00
pname = "belr";
version = "4.3.2";
2018-02-10 05:21:47 +00:00
2020-03-20 15:00:54 +00:00
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
rev = version;
sha256 = "1lda0f89vas38xgmc4yvnrigmrbril3dyqxgb5jh1zfx1xczfh1q";
2018-02-10 05:21:47 +00:00
};
buildInputs = [ bctoolbox ];
nativeBuildInputs = [ cmake ];
2020-03-20 15:00:54 +00:00
# Do not build static libraries
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
meta = with lib; {
description = "Belledonne Communications' language recognition library";
2020-03-20 15:00:54 +00:00
homepage = "https://gitlab.linphone.org/BC/public/belr";
license = licenses.gpl3Plus;
2018-02-10 05:21:47 +00:00
platforms = platforms.all;
2020-03-20 15:00:54 +00:00
maintainers = with maintainers; [ jluttine ];
2018-02-10 05:21:47 +00:00
};
}