2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre, build-tools }:
|
2014-05-22 13:29:36 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "apktool";
|
2022-02-27 00:57:02 +00:00
|
|
|
version = "2.6.1";
|
2014-05-22 13:29:36 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-24 18:05:31 +00:00
|
|
|
urls = [
|
|
|
|
"https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${version}.jar"
|
|
|
|
"https://github.com/iBotPeaches/Apktool/releases/download/v${version}/apktool_${version}.jar"
|
|
|
|
];
|
2022-02-27 00:57:02 +00:00
|
|
|
sha256 = "sha256-vCuah6xahpBbbKNDwhoNs7w3vdURVLyc32VSPZWJXTQ=";
|
2014-05-22 13:29:36 +00:00
|
|
|
};
|
|
|
|
|
2021-07-26 18:58:33 +00:00
|
|
|
dontUnpack = true;
|
2014-05-22 13:29:36 +00:00
|
|
|
|
2017-01-26 01:45:36 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2014-05-22 13:29:36 +00:00
|
|
|
|
2015-07-28 00:55:55 +00:00
|
|
|
sourceRoot = ".";
|
|
|
|
|
2021-07-24 11:40:07 +00:00
|
|
|
installPhase =
|
|
|
|
let
|
|
|
|
tools = builtins.head build-tools;
|
|
|
|
in ''
|
|
|
|
install -D ${src} "$out/libexec/apktool/apktool.jar"
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
makeWrapper "${jre}/bin/java" "$out/bin/apktool" \
|
|
|
|
--add-flags "-jar $out/libexec/apktool/apktool.jar" \
|
|
|
|
--prefix PATH : "${tools}/libexec/android-sdk/build-tools/${tools.version}"
|
|
|
|
'';
|
2014-05-22 13:29:36 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2014-05-22 13:29:36 +00:00
|
|
|
description = "A tool for reverse engineering Android apk files";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://ibotpeaches.github.io/Apktool/";
|
2022-06-02 13:38:41 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2014-05-22 13:29:36 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ offline ];
|
2017-01-26 01:45:36 +00:00
|
|
|
platforms = with platforms; unix;
|
2014-05-22 13:29:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|