···1011python3.pkgs.buildPythonApplication rec {
12 pname = "apksigcopier";
13- version = "1.0.0";
1415 src = fetchFromGitHub {
16 owner = "obfusk";
17 repo = "apksigcopier";
18 rev = "v${version}";
19- sha256 = "1la1ml91jvqc1zakbqfpayjbs67pi3i18bsgz3mf11rxgphd3fpk";
20 };
2122 nativeBuildInputs = [ installShellFiles pandoc ];
···42 '';
4344 meta = with lib; {
45- description = "Copy/extract/patch apk signatures & compare apks";
46 longDescription = ''
47- apksigcopier is a tool for copying APK signatures from a signed APK
48- to an unsigned one (in order to verify reproducible builds). It can
49- also be used to compare two APKs with different signatures. Its
50- command-line tool offers four operations:
5152 * copy signatures directly from a signed to an unsigned APK
53 * extract signatures from a signed APK to a directory
···1011python3.pkgs.buildPythonApplication rec {
12 pname = "apksigcopier";
13+ version = "1.0.1";
1415 src = fetchFromGitHub {
16 owner = "obfusk";
17 repo = "apksigcopier";
18 rev = "v${version}";
19+ sha256 = "07ldq3q1x2lpb15q5s5i1pbg89sn6ah45amskm9pndqlh16z9k2x";
20 };
2122 nativeBuildInputs = [ installShellFiles pandoc ];
···42 '';
4344 meta = with lib; {
45+ description = "Copy/extract/patch android apk signatures & compare apks";
46 longDescription = ''
47+ apksigcopier is a tool for copying android APK signatures from a signed APK to an unsigned one (in order to verify reproducible builds).
48+ It can also be used to compare two APKs with different signatures.
49+ Its command-line tool offers four operations:
05051 * copy signatures directly from a signed to an unsigned APK
52 * extract signatures from a signed APK to a directory