lol
1{ cmake
2, fetchFromGitLab
3, lib, stdenv
4}:
5
6stdenv.mkDerivation rec {
7 pname = "bcunit";
8 version = "linphone-4.4.1";
9
10 nativeBuildInputs = [ cmake ];
11 src = fetchFromGitLab {
12 domain = "gitlab.linphone.org";
13 owner = "public";
14 group = "BC";
15 repo = pname;
16 rev = "c5eebcc7f794e9567d3c72d15d3f28bffe6bfd0f";
17 sha256 = "sha256-8DSfqHerx/V00SJjTSQaG9Rjqx330iG6sGivBDUvQfA=";
18 };
19
20 meta = with lib; {
21 description = "Belledonne Communications' fork of CUnit test framework. Part of the Linphone project";
22 homepage = "https://gitlab.linphone.org/BC/public/bcunit";
23 license = licenses.lgpl2Plus;
24 maintainers = with maintainers; [ raskin jluttine ];
25 platforms = platforms.all;
26 };
27}