unity-test:init at 2.61 (#381665)

This commit is contained in:
Sandro
2025-03-05 03:24:47 +01:00
committed by GitHub
2 changed files with 34 additions and 0 deletions
+6
View File
@@ -9800,6 +9800,12 @@
githubId = 140937;
name = "Henner Zeller";
};
i01011001 = {
email = "yugen.m7@gmail.com";
github = "i01011001";
githubId = 134605846;
name = "Yugen";
};
i077 = {
email = "nixpkgs@imranhossa.in";
github = "i077";
+28
View File
@@ -0,0 +1,28 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "unity-test";
version = "2.6.1";
src = fetchFromGitHub {
owner = "ThrowTheSwitch";
repo = "Unity";
tag = "v${finalAttrs.version}";
hash = "sha256-g0ubq7RxGQmL1R6vz9RIGJpVWYsgrZhsTWSrL1ySEug=";
};
nativeBuildInputs = [ cmake ];
doCheck = true;
meta = {
description = "Unity Unit Testing Framework";
homepage = "https://www.throwtheswitch.org/unity";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.i01011001 ];
};
})