Files
nixpkgs/pkgs/by-name/ab/abootimg/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

66 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
coreutils,
cpio,
findutils,
gzip,
makeWrapper,
util-linux,
}:
stdenv.mkDerivation rec {
pname = "abootimg";
version = "0.6";
src = fetchFromGitHub {
owner = "ggrandou";
repo = "abootimg";
rev = "7e127fee6a3981f6b0a50ce9910267cd501e09d4";
sha256 = "1qgx9fxwhylgnixzkz2mzv2707f65qq7rar2rsqak536vhig1z9a";
};
strictDeps = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ util-linux ];
postPatch = ''
cat <<EOF > version.h
#define VERSION_STR "${version}"
EOF
'';
installPhase = ''
mkdir -p $out/bin
install -D -m 755 abootimg $out/bin
install -D -m444 ./debian/abootimg.1 $out/share/man/man1/abootimg.1;
install -D -m 755 abootimg-pack-initrd $out/bin
wrapProgram $out/bin/abootimg-pack-initrd --prefix PATH : ${
lib.makeBinPath [
coreutils
cpio
findutils
gzip
]
}
install -D -m 755 abootimg-unpack-initrd $out/bin
wrapProgram $out/bin/abootimg-unpack-initrd --prefix PATH : ${
lib.makeBinPath [
cpio
gzip
]
}
'';
meta = {
homepage = "https://github.com/ggrandou/abootimg";
description = "Manipulate Android Boot Images";
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ flokli ];
};
}