nixpkgs/pkgs/by-name/ab/abootimg/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.3 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitHub,
coreutils,
cpio,
findutils,
gzip,
makeWrapper,
util-linux,
}:
2018-04-23 10:08:24 +00:00
2021-07-14 15:10:11 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "abootimg";
2021-07-14 15:10:11 +00:00
version = "0.6";
2018-04-23 10:08:24 +00:00
src = fetchFromGitHub {
owner = "ggrandou";
repo = "abootimg";
rev = "7e127fee6a3981f6b0a50ce9910267cd501e09d4";
sha256 = "1qgx9fxwhylgnixzkz2mzv2707f65qq7rar2rsqak536vhig1z9a";
};
strictDeps = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ util-linux ];
2018-04-23 10:08:24 +00:00
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
]
}
2018-04-23 10:08:24 +00:00
install -D -m 755 abootimg-unpack-initrd $out/bin
wrapProgram $out/bin/abootimg-unpack-initrd --prefix PATH : ${
lib.makeBinPath [
cpio
gzip
]
}
2018-04-23 10:08:24 +00:00
'';
meta = with lib; {
homepage = "https://github.com/ggrandou/abootimg";
2018-04-23 10:08:24 +00:00
description = "Manipulate Android Boot Images";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.flokli ];
};
}