4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
1.0 KiB
Nix
31 lines
1.0 KiB
Nix
{ lib, stdenv, fetchzip, bzip2, openssl, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "imgpatchtools";
|
|
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 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;
|
|
};
|
|
}
|