tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.apkinspector: refactor
Fabian Affolter
2 years ago
67da5a7e
a362c7fb
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
apkinspector
default.nix
+3
-2
pkgs/development/python-modules/apkinspector/default.nix
···
18
18
hash = "sha256-EztaCoUVbV9pIoba4X4liqPRZiZB6F65PB9cdb/eA+A=";
19
19
};
20
20
21
21
-
nativeBuildInputs = [
21
21
+
build-system = [
22
22
poetry-core
23
23
];
24
24
···
32
32
33
33
meta = with lib; {
34
34
description = "Module designed to provide detailed insights into the zip structure of APK files";
35
35
-
mainProgram = "apkInspector";
36
35
homepage = "https://github.com/erev0s/apkInspector";
36
36
+
changelog = "https://github.com/erev0s/apkInspector/releases/tag/v${version}";
37
37
license = licenses.asl20;
38
38
maintainers = with maintainers; [ fab ];
39
39
+
mainProgram = "apkInspector";
39
40
};
40
41
}