Merge pull request #30770 from c0bw3b/pkg/apktool

apktool: 2.2.4 -> 2.3.0
This commit is contained in:
Jörg Thalheim 2017-10-25 02:43:15 +01:00 committed by GitHub
commit 28f0abae6d

View file

@ -2,11 +2,14 @@
stdenv.mkDerivation rec {
name = "apktool-${version}";
version = "2.2.4";
version = "2.3.0";
src = fetchurl {
url = "https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${version}.jar";
sha256 = "0l9jxa393a52iiawh93v31vr1y6z2bwg6dqhpivqd6y0vip1h7qz";
urls = [
"https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${version}.jar"
"https://github.com/iBotPeaches/Apktool/releases/download/v${version}/apktool_${version}.jar"
];
sha256 = "b724c158ec99dbad723024e259fd73e5135c40d652a3c599cec6ade9264a568e";
};
phases = [ "installPhase" ];
@ -25,7 +28,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A tool for reverse engineering Android apk files";
homepage = https://code.google.com/p/android-apktool/;
homepage = https://ibotpeaches.github.io/Apktool/;
license = licenses.asl20;
maintainers = with maintainers; [ offline ];
platforms = with platforms; unix;