Merge pull request #129627 from obfusk/apksigcopier-1.0.1

apksigcopier: 1.0.0 -> 1.0.1

authored by Sandro and committed by GitHub e1da7b1e c0647344

+6 -7
+6 -7
pkgs/development/tools/apksigcopier/default.nix
··· 10 10 11 11 python3.pkgs.buildPythonApplication rec { 12 12 pname = "apksigcopier"; 13 - version = "1.0.0"; 13 + version = "1.0.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "obfusk"; 17 17 repo = "apksigcopier"; 18 18 rev = "v${version}"; 19 - sha256 = "1la1ml91jvqc1zakbqfpayjbs67pi3i18bsgz3mf11rxgphd3fpk"; 19 + sha256 = "07ldq3q1x2lpb15q5s5i1pbg89sn6ah45amskm9pndqlh16z9k2x"; 20 20 }; 21 21 22 22 nativeBuildInputs = [ installShellFiles pandoc ]; ··· 42 42 ''; 43 43 44 44 meta = with lib; { 45 - description = "Copy/extract/patch apk signatures & compare apks"; 45 + description = "Copy/extract/patch android apk signatures & compare apks"; 46 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: 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: 51 50 52 51 * copy signatures directly from a signed to an unsigned APK 53 52 * extract signatures from a signed APK to a directory