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
32 lines
758 B
Nix
32 lines
758 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "sdat2img";
|
|
version = "0-unstable-2021-11-09";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "sdat2img";
|
|
owner = "xpirt";
|
|
rev = "b432c988a412c06ff24d196132e354712fc18929";
|
|
sha256 = "sha256-NCbf9H0hoJgeDtP6cQY0H280BQqgKXv3ConZ87QixVY=";
|
|
};
|
|
|
|
format = "other";
|
|
installPhase = ''
|
|
install -D $src/sdat2img.py $out/bin/sdat2img
|
|
'';
|
|
|
|
meta = {
|
|
description = "Convert sparse Android data image (.dat) into filesystem ext4 image (.img)";
|
|
homepage = "https://github.com/xpirt/sdat2img";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.xaverdh ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "sdat2img";
|
|
};
|
|
}
|