mkbootimg-osm0sis: init at 2022.11.09-unstable-2025-03-10

Signed-off-by: David Wronek <david.wronek@mainlining.org>
This commit is contained in:
David Wronek
2026-03-20 14:35:48 +01:00
parent ab7873343b
commit 55ccba28fb
@@ -0,0 +1,40 @@
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "mkbootimg-osm0sis";
version = "2022.11.09-unstable-2025-03-10";
src = fetchFromGitHub {
owner = "osm0sis";
repo = "mkbootimg";
rev = "17cea80bd5af64e45cdf9e263cad7555030e0e86";
hash = "sha256-5ilpgQS5ctMpxTJRa8Wty1B0mNN+77/fS2FThNfAKZk=";
};
strictDeps = true;
env.NIX_CFLAGS_COMPILE = toString (
lib.optional stdenv.cc.isGNU [
# Required with newer GCC
"-Wstringop-overflow=0"
]
);
installPhase = ''
runHook preInstall
install -Dm555 {mk,unpack}bootimg -t $out/bin
runHook postInstall
'';
meta = {
homepage = "https://github.com/osm0sis/mkbootimg";
description = "C rewrite of Android's boot image tools";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ ungeskriptet ];
teams = [ lib.teams.android ];
mainProgram = "mkbootimg";
};
}