android-ota-payload-extractor: init at 1.1

This commit is contained in:
matthewcroughan
2026-02-11 21:42:10 -08:00
committed by Morgan Jones
parent 897671288b
commit 955a5f2c81
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finallAttrs: {
pname = "android-ota-payload-extractor";
version = "1.1";
src = fetchFromGitHub {
owner = "tobyxdd";
repo = "android-ota-payload-extractor";
tag = "v${finallAttrs.version}";
hash = "sha256-Ln9HSM3mmba5XrzPCmgdn+erGK1v/POz586K/D4krnY=";
};
vendorHash = "sha256-JsinGljnb+kC0QgaF4Vbi6Mh3Lwwwk/SbC+p5WLt08A=";
ldflags = [
"-s"
"-w"
];
meta = {
description = "A fast & natively cross-platform Android OTA payload extractor written in Go";
homepage = "https://github.com/tobyxdd/android-ota-payload-extractor";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ matthewcroughan ];
mainProgram = "android-ota-payload-extractor";
};
})