bundletool 1.14.1 -> 1.15.0 https://github.com/google/bundletool/releases attrpath: bundletool Checking auto update branch... No auto update branch exists Old version 1.14.1" not present in master derivation file with contents: { lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre_headless }: stdenvNoCC.mkDerivation rec { pname = "bundletool"; version = "1.15.0"; src = fetchurl { url = "https://github.com/google/bundletool/releases/download/${version}/bundletool-all-${version}.jar"; sha256 = "sha256-FOeyaOF1wagy0WlaHPRsXH4GlJCT5u+3qDxk16JS9/g="; }; 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; }; }