kangaru: init at 4.3.2

This commit is contained in:
fliiiix 2024-10-19 14:59:08 +02:00
parent c520c086d7
commit 7642cf2bdc

View File

@ -0,0 +1,32 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "kangaru";
version = "4.3.2";
src = fetchFromGitHub {
owner = "gracicot";
repo = "kangaru";
rev = "refs/tags/v${finalAttrs.version}";
sha256 = "sha256-30gmNo68cDGmGjS75KySyORC6s1NBI925QuZyOv3Kag=";
};
nativeBuildInputs = [
cmake
];
doCheck = true;
meta = {
description = "Inversion of control container for C++11, C++14 and later";
homepage = "https://github.com/gracicot/kangaru";
maintainers = with lib.maintainers; [ l33tname ];
platforms = lib.platforms.all;
license = lib.licenses.mit;
};
})