belr: 0.1.3 -> unstable-2020-03-09
This commit is contained in:
parent
9bd261213b
commit
8a236c60a9
@ -1,24 +1,35 @@
|
|||||||
{ stdenv, cmake, fetchFromGitHub, bctoolbox }:
|
{ bctoolbox
|
||||||
|
, cmake
|
||||||
|
, fetchFromGitLab
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
baseName = "belr";
|
pname = "belr";
|
||||||
version = "0.1.3";
|
# Using master branch for linphone-desktop caused a chain reaction that many
|
||||||
name = "${baseName}-${version}";
|
# of its dependencies needed to use master branch too.
|
||||||
|
version = "unstable-2020-03-09";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitLab {
|
||||||
owner = "BelledonneCommunications";
|
domain = "gitlab.linphone.org";
|
||||||
repo = baseName;
|
owner = "public";
|
||||||
rev = version;
|
group = "BC";
|
||||||
sha256 = "0mf8lsyq1z3b5p47c00lnwc8n7v9nzs1fd2g9c9hnz6fjd2ka44w";
|
repo = pname;
|
||||||
|
rev = "326d030ca9db12525c2a6d2a65f386f36f3c2ed5";
|
||||||
|
sha256 = "1cdblb9smncq3al0crqp5651b02k1g6whlw1ib769p61gad0rs3v";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ bctoolbox ];
|
buildInputs = [ bctoolbox ];
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
meta = with stdenv.lib;{
|
# Do not build static libraries
|
||||||
|
cmakeFlags = [ "-DENABLE_STATIC=NO" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Belr is Belledonne Communications' language recognition library";
|
description = "Belr is Belledonne Communications' language recognition library";
|
||||||
homepage = https://github.com/BelledonneCommunications/belr;
|
homepage = "https://gitlab.linphone.org/BC/public/belr";
|
||||||
license = licenses.lgpl21;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ jluttine ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user