Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

apksigcopier: use apksigner

+2 -2
+2 -2
pkgs/development/tools/apksigcopier/default.nix
··· 4 , installShellFiles 5 , bash 6 , pandoc 7 }: 8 - 9 - # FIXME: how to "recommend" apksigner like the Debian package? 10 11 python3.pkgs.buildPythonApplication rec { 12 pname = "apksigcopier"; ··· 22 nativeBuildInputs = [ installShellFiles pandoc ]; 23 propagatedBuildInputs = with python3.pkgs; [ click ]; 24 checkInputs = with python3.pkgs; [ flake8 mypy pylint ]; 25 26 postPatch = '' 27 substituteInPlace Makefile \
··· 4 , installShellFiles 5 , bash 6 , pandoc 7 + , apksigner 8 }: 9 10 python3.pkgs.buildPythonApplication rec { 11 pname = "apksigcopier"; ··· 21 nativeBuildInputs = [ installShellFiles pandoc ]; 22 propagatedBuildInputs = with python3.pkgs; [ click ]; 23 checkInputs = with python3.pkgs; [ flake8 mypy pylint ]; 24 + makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath [ apksigner ]}" ]; 25 26 postPatch = '' 27 substituteInPlace Makefile \