2022-11-18T07:22:26 bundletool 1.13.0 -> 1.13.1 https://repology.org/metapackage/bundletool/versions 2022-11-18T07:22:31 attrpath: bundletool 2022-11-18T07:22:31 Checking auto update branch... 2022-11-18T07:22:31 An auto update branch exists with message `bundletool: 1.13.0 -> 1.13.1`. New version is 1.13.1. 2022-11-18T07:22:31 An auto update branch exists with an equal or greater version 2022-11-18T16:57:28 bundletool 1.13.0 -> 1.13.1 https://github.com/google/bundletool/releases 2022-11-18T16:57:30 attrpath: bundletool 2022-11-18T16:57:30 Checking auto update branch... 2022-11-18T16:57:30 No auto update branch exists 2022-11-18T16:57:31 Old version 1.13.0" not present in master derivation file with contents: { lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre_headless }: stdenvNoCC.mkDerivation rec { pname = "bundletool"; version = "1.13.1"; src = fetchurl { url = "https://github.com/google/bundletool/releases/download/${version}/bundletool-all-${version}.jar"; sha256 = "sha256-owXj7FSR98IPuaWkUGpv4e6c4c6XIYFsxZZH0OWYcu8="; }; dontUnpack = true; nativeBuildInputs = [ makeBinaryWrapper ]; installPhase = '' runHook preInstall makeWrapper ${jre_headless}/bin/java $out/bin/bundletool --add-flags "-jar $src" runHook postInstall ''; meta = with lib; { description = "Command-line tool to manipulate Android App Bundles"; homepage = "https://developer.android.com/studio/command-line/bundletool"; changelog = "https://github.com/google/bundletool/releases/tag/${version}"; maintainers = with maintainers; [ marsam ]; platforms = jre_headless.meta.platforms; license = licenses.asl20; }; }