about summary refs log tree commit diff
path: root/pkgs/development/tools/apktool
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2017-10-24 20:05:31 +0200
committerGitHub <noreply@github.com>2017-10-24 20:05:31 +0200
commit35bf3b80724f884e1b25d5df614fc55c67216df3 (patch)
treef84bdc4b02a06620caf63b9800c23326da65e13b /pkgs/development/tools/apktool
parent9b7bf9cd912541c1fac78eb5f27d6e853ac6808c (diff)
apktool: 2.2.4 -> 2.3.0
Diffstat (limited to 'pkgs/development/tools/apktool')
-rw-r--r--pkgs/development/tools/apktool/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/tools/apktool/default.nix b/pkgs/development/tools/apktool/default.nix
index 555cb313a6291..158de9226c69a 100644
--- a/pkgs/development/tools/apktool/default.nix
+++ b/pkgs/development/tools/apktool/default.nix
@@ -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;