1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

apktool: 2.2.4 -> 2.3.0

This commit is contained in:
Renaud 2017-10-24 20:05:31 +02:00 committed by GitHub
parent 9b7bf9cd91
commit 35bf3b8072

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;