Skip to content

Commit

Permalink
cf-tool: init at 202405140250 (#337695)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Sep 3, 2024
2 parents 8170212 + 13413a7 commit ed7131d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/by-name/cf/cf-tool/package.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}

0 comments on commit ed7131d

Please sign in to comment.