nixpkgs/pkgs/tools/misc/bcunit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
723 B
Nix
Raw Normal View History

2020-03-20 08:30:32 +00:00
{ cmake
, fetchFromGitLab
, 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";
version = "linphone-4.4.1";
2020-03-20 08:30:32 +00:00
nativeBuildInputs = [ cmake ];
2020-03-20 08:30:32 +00:00
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
repo = pname;
rev = "c5eebcc7f794e9567d3c72d15d3f28bffe6bfd0f";
sha256 = "sha256-8DSfqHerx/V00SJjTSQaG9Rjqx330iG6sGivBDUvQfA=";
2016-09-05 22:15:24 +00:00
};
meta = with lib; {
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
};
}