mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +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.
28 lines
749 B
Nix
28 lines
749 B
Nix
{ lib, fetchFromGitHub, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "sdat2img";
|
|
version = "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";
|
|
};
|
|
}
|