Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: da4695009c85
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5cff8ec220cc
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 11, 2018

  1. apktool: 2.3.1 -> 2.3.2

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/apktool/versions.
    
    These checks were done:
    
    - built on NixOS
    - ran ‘/nix/store/dhjjw9xk7rx4gm6ngpgbf5kdhcgaxdgw-apktool-2.3.2/bin/apktool -h’ got 0 exit code
    - ran ‘/nix/store/dhjjw9xk7rx4gm6ngpgbf5kdhcgaxdgw-apktool-2.3.2/bin/apktool --help’ got 0 exit code
    - ran ‘/nix/store/dhjjw9xk7rx4gm6ngpgbf5kdhcgaxdgw-apktool-2.3.2/bin/apktool help’ got 0 exit code
    - ran ‘/nix/store/dhjjw9xk7rx4gm6ngpgbf5kdhcgaxdgw-apktool-2.3.2/bin/apktool --version’ and found version 2.3.2
    - found 2.3.2 with grep in /nix/store/dhjjw9xk7rx4gm6ngpgbf5kdhcgaxdgw-apktool-2.3.2
    - directory tree listing: https://gist.github.com/7989c4dc760bbeb74791e11fb1bbebb1
    R. RyanTM committed Apr 11, 2018
    Copy the full SHA
    81bd50e View commit details

Commits on Apr 19, 2018

  1. Merge pull request #38771 from r-ryantm/auto-update/apktool

    apktool: 2.3.1 -> 2.3.2
    matthewbauer authored Apr 19, 2018
    Copy the full SHA
    5cff8ec View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/apktool/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/apktool/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

stdenv.mkDerivation rec {
name = "apktool-${version}";
version = "2.3.1";
version = "2.3.2";

src = fetchurl {
urls = [
"https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_${version}.jar"
"https://github.com/iBotPeaches/Apktool/releases/download/v${version}/apktool_${version}.jar"
];
sha256 = "01xj2hivwwp3msvv0psxyxrzg95vj2ny56l3n90glhwznn7l60ai";
sha256 = "01sjrc3fwkpkr8b4w1i9amyiix02b29n0w2zcrw5sdj91n8vm3b4";
};

phases = [ "installPhase" ];