Merge pull request #35552 from yegortimoshenko/20180225.155732/imgpatchtools

imgpatchtools: init at 0.3
This commit is contained in:
Jörg Thalheim 2018-02-25 17:08:48 +00:00 committed by GitHub
commit c544e9a10f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

@ -0,0 +1,30 @@
{ stdenv, fetchzip, bzip2, openssl, zlib }:
stdenv.mkDerivation rec {
name = "imgpatchtools-${version}";
version = "0.3";
src = fetchzip {
url = "https://github.com/erfanoabdi/imgpatchtools/archive/${version}.tar.gz";
sha256 = "1cwp1hfhip252dz0mbkhrsrkws6m15k359n4amw2vfnglnls8czd";
};
buildInputs = [ bzip2 openssl zlib ];
installPhase = "install -Dt $out/bin bin/*";
meta = with stdenv.lib; {
description = "Tools to manipulate Android OTA archives";
longDescription = ''
This package is useful for Android development. In particular, it can be
used to extract ext4 /system image from Android distribution ZIP archives
such as those distributed by LineageOS and Replicant, via BlockImageUpdate
utility. It also includes other, related, but arguably more advanced tools
for OTA manipulation.
'';
homepage = https://github.com/erfanoabdi/imgpatchtools;
license = licenses.gpl3;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.linux;
};
}

@ -644,6 +644,8 @@ with pkgs;
glyr = callPackage ../tools/audio/glyr { };
imgpatchtools = callPackage ../development/mobile/imgpatchtools { };
lastpass-cli = callPackage ../tools/security/lastpass-cli { };
pass = callPackage ../tools/security/pass { };