biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / apktool / default.nix
blob9af6d2c9f90b2c5afc9551b2ea272451735780cf
1 { lib
2 , stdenv
3 , fetchurl
4 , makeWrapper
5 , jdk_headless
6 , aapt
7 }:
9 stdenv.mkDerivation rec {
10   pname = "apktool";
11   version = "2.9.3";
13   src = fetchurl {
14     urls = [
15       "https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${version}.jar"
16       "https://github.com/iBotPeaches/Apktool/releases/download/v${version}/apktool_${version}.jar"
17     ];
18     hash = "sha256-eVbrBBlDAM4NCoStGHce68lLifuNHdzOjqTAVoGGRvQ=";
19   };
21   dontUnpack = true;
23   nativeBuildInputs = [ makeWrapper ];
25   sourceRoot = ".";
27   installPhase =
28     ''
29       install -D ${src} "$out/libexec/apktool/apktool.jar"
30       mkdir -p "$out/bin"
31       makeWrapper "${jdk_headless}/bin/java" "$out/bin/apktool" \
32           --add-flags "-jar $out/libexec/apktool/apktool.jar" \
33           --prefix PATH : ${lib.getBin aapt}
34     '';
36   meta = with lib; {
37     description = "A tool for reverse engineering Android apk files";
38     mainProgram = "apktool";
39     homepage = "https://ibotpeaches.github.io/Apktool/";
40     changelog = "https://github.com/iBotPeaches/Apktool/releases/tag/v${version}";
41     sourceProvenance = with sourceTypes; [ binaryBytecode ];
42     license = licenses.asl20;
43     maintainers = with maintainers; [ offline ];
44     platforms = with platforms; unix;
45   };