cf-tool: init at 202405140250 (#337695)

This commit is contained in:
Sandro 2024-09-03 21:30:29 +02:00 committed by GitHub
commit ed7131db82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,31 @@
{
buildGoModule,
fetchFromGitHub,
lib,
nix-update-script,
}:
buildGoModule rec {
pname = "cf-tool";
version = "202405140250";
src = fetchFromGitHub {
owner = "sempr";
repo = "cf-tool";
rev = version;
hash = "sha256-D+mJJw1+ImCrFpsv8HmaAwWqjYvUWouh8mgQ7hJxMrc=";
};
vendorHash = "sha256-R+mzfH9f422+WTiwIbDoBeEc+YYbW3tisUPlqrnFWbg=";
doCheck = false;
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Codeforces CLI (Submit, Parse, Test, etc.). Support Contests, Gym, Groups, acmsguru, Windows, macOS, Linux, 7 MB";
homepage = "https://github.com/sempr/cf-tool";
license = licenses.mit;
maintainers = with maintainers; [ bot-wxt1221 ];
mainProgram = "cf";
};
}