about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/bcunit/default.nix
blob: b9e7c9712daab776b09ca3a8e719757abb9339fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ cmake
, fetchFromGitLab
, lib, stdenv
}:

stdenv.mkDerivation rec {
  pname = "bcunit";
  version = "linphone-4.4.1";

  nativeBuildInputs = [ cmake ];
  src = fetchFromGitLab {
    domain = "gitlab.linphone.org";
    owner = "public";
    group = "BC";
    repo = pname;
    rev = "c5eebcc7f794e9567d3c72d15d3f28bffe6bfd0f";
    sha256 = "sha256-8DSfqHerx/V00SJjTSQaG9Rjqx330iG6sGivBDUvQfA=";
  };

  meta = with lib; {
    description = "Belledonne Communications' fork of CUnit test framework. Part of the Linphone project.";
    homepage = "https://gitlab.linphone.org/BC/public/bcunit";
    license = licenses.lgpl2Plus;
    maintainers = with maintainers; [ raskin jluttine ];
    platforms = platforms.all;
  };
}