cgreen: init at 1.4.0

Cgreen is a modern unit test and mocking framework for C and C++
This commit is contained in:
Philipp Eder 2021-05-27 05:26:41 +02:00
parent a1ddc21608
commit 669ee721ee
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, lib, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "cgreen";
version = "1.4.0";
src = fetchFromGitHub {
owner = "cgreen-devs";
repo = "cgreen";
rev = version;
sha256 = "JEpvkM0EZiiQUZRngICNxHbNqS/qjqkEdMPckGbdWac=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
homepage = "https://github.com/cgreen-devs/cgreen";
description = "The Modern Unit Test and Mocking Framework for C and C++";
license = licenses.isc;
maintainers = [ maintainers.nichtsfrei ];
platforms = platforms.unix;
};
}

View file

@ -3483,6 +3483,8 @@ in
cfdg = callPackage ../tools/graphics/cfdg { };
cgreen = callPackage ../development/libraries/cgreen { };
checkinstall = callPackage ../tools/package-management/checkinstall { };
checkmake = callPackage ../development/tools/checkmake { };