2022-11-18T08:08:39 crowdin-cli 3.9.0 -> 3.9.1 https://repology.org/metapackage/crowdin-cli/versions 2022-11-18T08:08:41 attrpath: crowdin-cli 2022-11-18T08:08:41 Checking auto update branch... 2022-11-18T08:08:41 An auto update branch exists with message `crowdin-cli: 3.9.0 -> 3.9.1`. New version is 3.9.1. 2022-11-18T08:08:41 An auto update branch exists with an equal or greater version 2022-11-18T17:49:41 crowdin-cli 3.9.0 -> 3.9.1 https://github.com/crowdin/crowdin-cli/releases 2022-11-18T17:49:44 attrpath: crowdin-cli 2022-11-18T17:49:44 Checking auto update branch... 2022-11-18T17:49:44 No auto update branch exists 2022-11-18T17:49:44 Old version 3.9.0" not present in master derivation file with contents: { lib , stdenv , fetchurl , gawk , git , gnugrep , installShellFiles , jre , makeWrapper , crowdin-cli , testers , unzip }: stdenv.mkDerivation rec { pname = "crowdin-cli"; version = "3.9.1"; src = fetchurl { url = "https://github.com/crowdin/${pname}/releases/download/${version}/${pname}.zip"; sha256 = "sha256-n5eDe29+HhH4YHNLzRhIpx2ceH1pw0TaXdTtVZYNT48="; }; nativeBuildInputs = [ installShellFiles makeWrapper unzip ]; installPhase = '' runHook preInstall install -D crowdin-cli.jar $out/lib/crowdin-cli.jar installShellCompletion --cmd crowdin --bash ./crowdin_completion makeWrapper ${jre}/bin/java $out/bin/crowdin \ --argv0 crowdin \ --add-flags "-jar $out/lib/crowdin-cli.jar" \ --prefix PATH : ${lib.makeBinPath [ gawk gnugrep git ]} runHook postInstall ''; passthru.tests.version = testers.testVersion { package = crowdin-cli; }; meta = with lib; { mainProgram = "crowdin"; homepage = "https://github.com/crowdin/crowdin-cli/"; description = "A command-line client for the Crowdin API"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; license = licenses.mit; maintainers = with maintainers; [ DamienCassou ]; }; }