testlib: init at 0.9.41

This commit is contained in:
wxt 2024-08-29 09:35:21 +08:00
parent 1d5897404b
commit 3495206296
No known key found for this signature in database
GPG Key ID: 8281D5EE2D1825A4

View File

@ -0,0 +1,35 @@
{
fetchFromGitHub,
stdenvNoCC,
lib,
nix-update-script,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "testlib";
version = "0.9.41";
src = fetchFromGitHub {
owner = "MikeMirzayanov";
repo = "testlib";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-AttzDYLDlpfL3Zvds6yBR/m6W/3UZKR+1LVylqOTQcw=";
};
installPhase = ''
runHook preInstall
install -Dt $out/include/testlib testlib.h
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "C++ library to develop competitive programming problems";
homepage = "https://github.com/MikeMirzayanov/testlib";
changelog = "https://github.com/MikeMirzayanov/testlib/releases/tag/${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bot-wxt1221 ];
platforms = lib.platforms.all;
};
})