2021-11-01 14:55:02 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, bzip2, openssl, zlib }:
|
2018-02-25 16:14:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "imgpatchtools";
|
2018-02-25 16:14:35 +00:00
|
|
|
version = "0.3";
|
|
|
|
|
2021-11-01 14:55:02 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "erfanoabdi";
|
|
|
|
repo = "imgpatchtools";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-7TOkqaXPui14VcSmMmYJ1Wg+s85wrgp+E0XcCB0Ml7M=";
|
2018-02-25 16:14:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ bzip2 openssl zlib ];
|
|
|
|
|
|
|
|
installPhase = "install -Dt $out/bin bin/*";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-02-25 16:14:35 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/erfanoabdi/imgpatchtools";
|
2018-02-25 16:14:35 +00:00
|
|
|
license = licenses.gpl3;
|
2021-12-31 18:48:55 +00:00
|
|
|
maintainers = with maintainers; [ yana ];
|
2018-02-25 16:14:35 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|