apktool 2.9.0 -> 2.9.1 https://repology.org/project/apktool/versions attrpath: apktool Checking auto update branch... No auto update branch exists Old version 2.9.0" not present in master derivation file with contents: { lib , stdenv , fetchurl , makeWrapper , jdk_headless , aapt }: stdenv.mkDerivation rec { pname = "apktool"; version = "2.9.1"; src = fetchurl { urls = [ "https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${version}.jar" "https://github.com/iBotPeaches/Apktool/releases/download/v${version}/apktool_${version}.jar" ]; hash = "sha256-3nzoqhCay2Sef2nP6RAw/8INvMRu3Yq79sLR42z8zXs="; }; dontUnpack = true; nativeBuildInputs = [ makeWrapper ]; sourceRoot = "."; installPhase = '' install -D ${src} "$out/libexec/apktool/apktool.jar" mkdir -p "$out/bin" makeWrapper "${jdk_headless}/bin/java" "$out/bin/apktool" \ --add-flags "-jar $out/libexec/apktool/apktool.jar" \ --prefix PATH : ${lib.getBin aapt} ''; meta = with lib; { description = "A tool for reverse engineering Android apk files"; homepage = "https://ibotpeaches.github.io/Apktool/"; changelog = "https://github.com/iBotPeaches/Apktool/releases/tag/v${version}"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; license = licenses.asl20; maintainers = with maintainers; [ offline ]; platforms = with platforms; unix; }; }