summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-10-25 02:43:15 +0100
committerGitHub <noreply@github.com>2017-10-25 02:43:15 +0100
commit28f0abae6d3c5c06fd58c62afdef1ae21997acc4 (patch)
tree3cae37b278c9e17a8702ded45b679ed2d343f25b
parent550c6bf8b7e5dcb48bf006090c16779037d1245e (diff)
parent35bf3b80724f884e1b25d5df614fc55c67216df3 (diff)
downloadnixlib-28f0abae6d3c5c06fd58c62afdef1ae21997acc4.tar
nixlib-28f0abae6d3c5c06fd58c62afdef1ae21997acc4.tar.gz
nixlib-28f0abae6d3c5c06fd58c62afdef1ae21997acc4.tar.bz2
nixlib-28f0abae6d3c5c06fd58c62afdef1ae21997acc4.tar.lz
nixlib-28f0abae6d3c5c06fd58c62afdef1ae21997acc4.tar.xz
nixlib-28f0abae6d3c5c06fd58c62afdef1ae21997acc4.tar.zst
nixlib-28f0abae6d3c5c06fd58c62afdef1ae21997acc4.zip
Merge pull request #30770 from c0bw3b/pkg/apktool
apktool: 2.2.4 -> 2.3.0
-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 555cb313a629..158de9226c69 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;