2020-03-20 08:30:32 +00:00
|
|
|
{ cmake
|
|
|
|
, fetchFromGitLab
|
2021-01-11 07:54:33 +00:00
|
|
|
, lib, stdenv
|
2020-03-20 08:30:32 +00:00
|
|
|
}:
|
|
|
|
|
2016-09-05 22:15:24 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-03-20 08:30:32 +00:00
|
|
|
pname = "bcunit";
|
2022-01-28 17:57:13 +00:00
|
|
|
version = "linphone-4.4.1";
|
2020-03-20 08:30:32 +00:00
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2020-03-20 08:30:32 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.linphone.org";
|
|
|
|
owner = "public";
|
|
|
|
group = "BC";
|
|
|
|
repo = pname;
|
2022-01-28 17:57:13 +00:00
|
|
|
rev = "c5eebcc7f794e9567d3c72d15d3f28bffe6bfd0f";
|
|
|
|
sha256 = "sha256-8DSfqHerx/V00SJjTSQaG9Rjqx330iG6sGivBDUvQfA=";
|
2016-09-05 22:15:24 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-01-28 17:57:13 +00:00
|
|
|
description = "Belledonne Communications' fork of CUnit test framework. Part of the Linphone project.";
|
2020-03-20 08:30:32 +00:00
|
|
|
homepage = "https://gitlab.linphone.org/BC/public/bcunit";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ raskin jluttine ];
|
2021-03-17 09:25:35 +00:00
|
|
|
platforms = platforms.all;
|
2016-09-05 22:15:24 +00:00
|
|
|
};
|
|
|
|
}
|