mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 02:14:08 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
44 lines
1.2 KiB
Nix
44 lines
1.2 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 = with lib; {
|
|
homepage = "https://github.com/ggrandou/abootimg";
|
|
description = "Manipulate Android Boot Images";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.flokli ];
|
|
};
|
|
}
|